From 1740e8d125b69dd28ee7250465ebe19108b1cc55 Mon Sep 17 00:00:00 2001 From: Luca Haid Date: Tue, 4 Mar 2025 08:04:05 +0000 Subject: [PATCH] Changed Pop Network Filter to text based because of errors --- public/js/pages/Pop/Pop.js | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/public/js/pages/Pop/Pop.js b/public/js/pages/Pop/Pop.js index abe006daf..b8465cb28 100644 --- a/public/js/pages/Pop/Pop.js +++ b/public/js/pages/Pop/Pop.js @@ -50,9 +50,12 @@ Vue.component('Pop', { defaultPageSize: 25, headers: [ {text: 'Name', key: 'name', priority: 10}, - {text: 'Netzgebiet', key: 'networkArea', class: 'text-center', filter: 'autocomplete', - filterOptions: window['TT_CONFIG']['NETWORKS'], - priority: 8}, + {text: 'Netzgebiet', key: 'networkArea', class: 'text-center', + // TODO: fix autocomplete Filter + // filter: 'autocomplete', + // filterOptions: window['TT_CONFIG']['NETWORKS'], + // priority: 8 + }, {text: 'Zutritt', key: 'location', class: 'text-center', priority: 1}, {text: 'Standort', key: 'gps', class: 'text-center', priority: 2}, {text: 'Vlan Public/Nat/ipv6', key: 'vlan', class: 'text-center', priority: 7},