Skip to content

Commit bd628f4

Browse files
luizhf42otavio
authored andcommitted
refactor(ui): remove unnecessary async keyword from updateDeviceListFilter
1 parent e5e2b30 commit bd628f4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ui/src/views/Devices.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ const filter = ref("");
6868
const showDevices = computed(() => devicesStore.showDevices);
6969
const isDeviceList = computed(() => route.name === "DeviceList");
7070
71-
const updateDeviceListFilter = async () => {
71+
const updateDeviceListFilter = () => {
7272
const base64DeviceFilter = [{
7373
type: "property",
7474
params: { name: "name", operator: "contains", value: filter.value },

0 commit comments

Comments
 (0)