mirror of
https://github.com/louislam/dockge.git
synced 2024-11-27 13:14:03 +00:00
Fix lint issues
This commit is contained in:
parent
cacee2221e
commit
789a034fa3
1 changed files with 2 additions and 2 deletions
|
@ -34,7 +34,7 @@ export default defineComponent({
|
|||
stackList: {},
|
||||
|
||||
// All stack list from all agents
|
||||
allAgentStackList: {} as Record<string, any>,
|
||||
allAgentStackList: {} as Record<string, object>,
|
||||
|
||||
// online / offline / connecting
|
||||
agentStatusList: {
|
||||
|
@ -54,7 +54,7 @@ export default defineComponent({
|
|||
},
|
||||
|
||||
completeStackList() {
|
||||
let list : Record<string, any> = {};
|
||||
let list : Record<string, object> = {};
|
||||
|
||||
for (let stackName in this.stackList) {
|
||||
list[stackName + "_"] = this.stackList[stackName];
|
||||
|
|
Loading…
Reference in a new issue