diff --git a/api/sm/schemas/command.ts b/api/sm/schemas/command.ts new file mode 100644 index 0000000..c280d22 --- /dev/null +++ b/api/sm/schemas/command.ts @@ -0,0 +1,10 @@ +import {Method, SchemaInterface} from "../../schema-client"; + +class CommandSchema implements SchemaInterface { + method = Method.GET + url = '/system-monitoring/commands/{commandName}' + contentType = null; +} + +export let commandSchema = new CommandSchema() +export default commandSchema \ No newline at end of file diff --git a/components/elements/commands/styles.module.css b/components/elements/commands/styles.module.css index 4474b1f..c92f1e7 100644 --- a/components/elements/commands/styles.module.css +++ b/components/elements/commands/styles.module.css @@ -1,3 +1,5 @@ .autocomplete { width: 100%; + display: grid; + grid-template-columns: 11fr 1fr; }