We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a863510 commit 5db0f44Copy full SHA for 5db0f44
ui/src/components/kestra/Cascader.vue
@@ -14,7 +14,7 @@
14
<div v-if="data.value && data.children">
15
<code>
16
{{ data.children.length }}
17
- {{ data.children.length === 1 ? t("item") : t("items") }}
+ {{ data.children.length === 1 ? $t("item") : $t("items") }}
18
</code>
19
</div>
20
@@ -27,9 +27,6 @@
27
28
import VarValue from "../executions/VarValue.vue";
29
30
- import {useI18n} from "vue-i18n";
31
- const {t} = useI18n({useScope: "global"});
32
-
33
const isFile = (data: any) => typeof data === "string" && (data.startsWith("kestra:///") || data.startsWith("file://") || data.startsWith("nsfile://"));
34
35
interface Options {
0 commit comments