/
githubmirror
/
ydb-embedded-ui
Обзор
Документация
Войти
/
githubmirror
/
ydb-embedded-ui
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/utils/schema.ts
14 строк
451 B
Артём Муфазалов
feat: support system view (#2899)
19 сен 2025, 14:17
Не верифицирован
19 сен 2025, 14:17
b4e749a
Код
Авторство
О чём код?
import type {ESysViewType} from '../types/api/schema/sysView'; export function prepareSystemViewType(type?: ESysViewType) { if (!type) { return undefined; } // System view type is enum, its format from backend is EType // We need to display only Type, remove redundant E // EStoragePools -> StoragePools, EStorageStats -> StorageStats if (type.startsWith('E')) { return type.slice(1); } return type; }