shuriken-ui / nuxt

Nuxt version of Shuriken UI with ready to use components
https://shurikenui.com/
MIT License
139 stars 18 forks source link

BaseListbox: Some development texts made it to production #92

Closed igbominadeveloper closed 9 months ago

igbominadeveloper commented 9 months ago

In the BaseListbox component, some texts that were used during development were not cleaned out.

<template v-if="Array.isArray(value)">
    <div
      v-if="value.length === 0 && placeholder"
      class="nui-listbox-placeholder"
      :class="props.loading && 'text-transparent select-none'"
    >
    {{ placeholder }} azeaze
    </div>
    <div
      class="block truncate text-left"
      :class="[
        props.loading && 'select-none text-transparent',
        value.length === 0 && 'text-muted-300 dark:text-muted-500',
      ]"
    >
      {{
        typeof props.multipleLabel === 'function'
          ? props.multipleLabel(value, props.properties.label)
          : props.multipleLabel
      }}sdfsf
    </div>
  </template>