Skip to content

Commit 1b7ad05

Browse files
committed
Tags tab admin UI updated.
1 parent 2d26496 commit 1b7ad05

File tree

6 files changed

+379
-181
lines changed

6 files changed

+379
-181
lines changed

src/htdocs-admin/src/components/ProtocolConnections.vue

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2056,7 +2056,7 @@ export default {
20562056
.then((res) => res.json())
20572057
.then((json) => {
20582058
if (json.error) console.log(json);
2059-
this.fetchProtocolConnections(); // refreshes driver instances
2059+
this.fetchProtocolConnections(); // refreshes connections
20602060
})
20612061
.catch((err) => console.warn(err));
20622062
},
@@ -2072,7 +2072,7 @@ export default {
20722072
.then((res) => res.json())
20732073
.then((json) => {
20742074
if (json.error) console.log(json);
2075-
this.fetchProtocolConnections(); // refreshes roles
2075+
this.fetchProtocolConnections(); // refreshes connections
20762076
})
20772077
.catch((err) => console.warn(err));
20782078
},
@@ -2114,7 +2114,7 @@ export default {
21142114
.then((res) => res.json())
21152115
.then((json) => {
21162116
if (json.error) console.log(json);
2117-
this.fetchProtocolConnections(); // refreshes users
2117+
this.fetchProtocolConnections(); // refreshes connections
21182118
})
21192119
.catch((err) => console.warn(err));
21202120
},

src/htdocs-admin/src/components/ProtocolDriverInstances.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -345,7 +345,7 @@ export default {
345345
.then((res) => res.json())
346346
.then((json) => {
347347
if (json.error) console.log(json);
348-
this.fetchDriverInstances(); // refreshes users
348+
this.fetchDriverInstances(); // refreshes instances
349349
})
350350
.catch((err) => console.warn(err));
351351
},

0 commit comments

Comments
 (0)