Skip to content

Commit 957237f

Browse files
Devesh0129github-actions[bot]
authored andcommitted
apply formatting changes
1 parent 19435b6 commit 957237f

2 files changed

Lines changed: 13 additions & 7 deletions

File tree

meta_configurator/src/components/panels/gui-editor/properties/DateProperty.vue

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,12 @@ const dateValue = ref<Date | undefined>(
2323
props.propertyData ? new Date(props.propertyData) : undefined
2424
);
2525
26-
watch(() => props.propertyData, newVal => {
27-
dateValue.value = newVal ? new Date(newVal) : undefined;
28-
});
26+
watch(
27+
() => props.propertyData,
28+
newVal => {
29+
dateValue.value = newVal ? new Date(newVal) : undefined;
30+
}
31+
);
2932
3033
function updateValue(newDate: Date | undefined) {
3134
if (!newDate) {

meta_configurator/src/components/panels/gui-editor/properties/EmailProperty.vue

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,12 @@ const emit = defineEmits<{
2323
2424
const newPropertyData = ref(props.propertyData);
2525
26-
watch(() => props.propertyData, newVal => {
27-
newPropertyData.value = newVal;
28-
});
26+
watch(
27+
() => props.propertyData,
28+
newVal => {
29+
newPropertyData.value = newVal;
30+
}
31+
);
2932
3033
function updateValue() {
3134
emit('update:propertyData', newPropertyData.value);
@@ -52,4 +55,4 @@ function updateValue() {
5255
.tableInput {
5356
border: v-bind("settings.guiEditor.showBorderAroundInputFields ? '1px solid #d1d5db' : 'none'");
5457
}
55-
</style>
58+
</style>

0 commit comments

Comments
 (0)