Добавил апи метод

Стилизовал блок
This commit is contained in:
Rinsvent 2023-01-25 00:16:50 +07:00
parent ec41e91388
commit 27049764da
2 changed files with 12 additions and 0 deletions

10
api/sm/schemas/command.ts Normal file
View File

@ -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

View File

@ -1,3 +1,5 @@
.autocomplete {
width: 100%;
display: grid;
grid-template-columns: 11fr 1fr;
}