@tekkare/auriga 0.2.114 → 0.2.116
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/module.json
CHANGED
|
@@ -74,7 +74,7 @@
|
|
|
74
74
|
v-if="
|
|
75
75
|
max_amount === null &&
|
|
76
76
|
(show_select_all || dynamicSelectAll) &&
|
|
77
|
-
|
|
77
|
+
filterNameAdd.length > 0
|
|
78
78
|
"
|
|
79
79
|
class="add_all_action"
|
|
80
80
|
@click="add_all_element()"
|
|
@@ -332,7 +332,7 @@ export default defineComponent({
|
|
|
332
332
|
return langData.value?.custom;
|
|
333
333
|
});
|
|
334
334
|
const getAddAllText = computed(() => {
|
|
335
|
-
return props.dynamicSelectAll ? `${langData.value?.all} (${props.hasMoreData ? "Max:" +
|
|
335
|
+
return props.dynamicSelectAll ? `${langData.value?.all} (${props.hasMoreData ? "Max:" + filterNameAdd.value.length : filterNameAdd.value.length})` : langData.value?.all;
|
|
336
336
|
});
|
|
337
337
|
const noSelectionMsg = computed(() => {
|
|
338
338
|
return langData.value?.noSelection;
|