ipnetwork v2 update

This commit is contained in:
2025-08-21 10:39:04 +02:00
parent eb5c7edd08
commit 1d2bd0e731
8 changed files with 11872 additions and 510 deletions
@@ -376,4 +376,8 @@ td {
.tt-input-article-wrapper button[type=button].btn-link.position-absolute {
right: 30px !important;
}
div[no-form-group] {
margin-bottom: 0 !important;
}
@@ -584,6 +584,8 @@ Vue.component('tt-table', {
// go through filters and if there is a set value in filters and the filter of the column is select or autocomplete then parse the value to int
for (const key in this.filters) {
if (!this.columns[key]) continue;
if (this.filters[key] && (this.columns[key].filter === 'select' || this.columns[key].filter === 'autocomplete')) {
// only if first character is a number
// if (!isNaN(this.filters[key][0])) {