diff --git a/client/src/components/SelectionDialog/BasicSelectionDialog.vue b/client/src/components/SelectionDialog/BasicSelectionDialog.vue index 013de4be0e9e..d80167ca3f7e 100644 --- a/client/src/components/SelectionDialog/BasicSelectionDialog.vue +++ b/client/src/components/SelectionDialog/BasicSelectionDialog.vue @@ -54,7 +54,7 @@ async function load() { const response = await props.getData(); const incoming = response.data; items.value = incoming.map((item: any) => { - let timeStamp = item[props.timeKey]; + const timeStamp = item[props.timeKey]; showTime.value = !!timeStamp; return { id: item.id,