File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
core/frontend/src/components/parameter-editor Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change 2929 :items =" as_select_items"
3030 >
3131 <template #label >
32- <parameter-label :label =" label" :param =" param" :format-options =" formatOptions" />
32+ <parameter-label :label =" label ?? 'Select an option' " :param =" param" :format-options =" formatOptions" />
3333 </template >
3434 </v-autocomplete >
3535
4343 @change =" updateVariables"
4444 >
4545 <template #label >
46- <parameter-label :label =" label" :param =" param" :format-options =" formatOptions" />
46+ <parameter-label :label =" label ?? 'Choose a value' " :param =" param" :format-options =" formatOptions" />
4747 </template >
4848 </v-select >
4949
6060 @blur =" updateVariables"
6161 >
6262 <template #label >
63- <parameter-label :label =" label" :param =" param" :format-options =" formatOptions" />
63+ <parameter-label :label =" label ?? 'Enter a value' " :param =" param" :format-options =" formatOptions" />
6464 </template >
6565 </v-text-field >
6666 </div >
@@ -113,8 +113,8 @@ export default Vue.extend({
113113 default: false ,
114114 },
115115 label: {
116- type: String ,
117- default: ' ' ,
116+ type: String as PropType < string | undefined > ,
117+ default: undefined ,
118118 },
119119 autoRefreshParams: {
120120 type: Boolean ,
You can’t perform that action at this time.
0 commit comments