Commit 036c47ef authored by Merekeyev Dias's avatar Merekeyev Dias

added host column

parent 53baecd5
......@@ -6,7 +6,7 @@ interface Organizations {
organization_code: string;
organization_name: string;
status: string;
login: string;
host: string;
}
export const apiSlice = createApi({
......
......@@ -12,7 +12,7 @@ interface DataType {
organization_code: string;
organization_name: string;
status: string;
login: string;
host: string;
}
const columns: TableProps<DataType>['columns'] = [
......@@ -38,7 +38,7 @@ const columns: TableProps<DataType>['columns'] = [
},
{
title: "Адрес системы/хост",
dataIndex: "",
dataIndex: "host",
key: "host"
},
{
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment