Skip to content

Commit

Permalink
V1.2.1
Browse files Browse the repository at this point in the history
Amendment: fix code smell
  • Loading branch information
fakoua committed Mar 1, 2024
1 parent fed7bb9 commit 02d2d8a
Show file tree
Hide file tree
Showing 3 changed files with 5,235 additions and 5,235 deletions.
10 changes: 5 additions & 5 deletions q-manui/src/pages/IndexPage.vue
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@
v-model="hostname"
label="Hostname"
dense
autocomplete="nofill"
autocomplete="off"
lazy-rules
autofocus
:rules="[(val) => !!val || 'Field is required']"
Expand All @@ -83,7 +83,7 @@
v-model="username"
label="Username"
dense
autocomplete="nofill"
autocomplete="off"
lazy-rules
:rules="[(val) => !!val || 'Field is required']"
/>
Expand All @@ -92,7 +92,7 @@
type="password"
label="Password"
dense
autocomplete="nofill"
autocomplete="off"
lazy-rules
:rules="[(val) => !!val || 'Field is required']"
/>
Expand All @@ -105,7 +105,7 @@
v-model="protocol"
dense
maxlength="5"
autocomplete="nofill"
autocomplete="off"
lazy-rules
:rules="[(val) => !!val || '*']"
style="width: 40px"
Expand All @@ -117,7 +117,7 @@
v-model="port"
dense
type="number"
autocomplete="nofill"
autocomplete="off"
lazy-rules
:rules="[(val) => !!val || '*']"
style="width: 50px"
Expand Down
2 changes: 1 addition & 1 deletion src/system.ts
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
import * as winrm from "https://deno.land/x/deno_winrm@0.6/mod.ts";
import { getWmiValue } from "./wmiutils.ts";
import {
DeviceModel,
DiskModel,
NetworkModel,
PerfmonModel,
SystemModel,
WinRMPayload,
} from "./models.ts";
import { DeviceModel } from "./models.ts";

/**
* Retrieves system information using WinRM.
Expand Down
Loading

0 comments on commit 02d2d8a

Please sign in to comment.