Skip to content

Commit 35af584

Browse files
committed
fix(Tablets): update filter
1 parent f9c0269 commit 35af584

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/containers/Tablets/Tablets.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,9 @@ export function Tablets({
3434
const [autoRefreshInterval] = useAutoRefreshInterval();
3535

3636
let params: TabletsApiRequestParams = {};
37-
const filter = onlyActive ? `(State!=Dead)` : undefined;
37+
const filter = onlyActive
38+
? `(State=[Created,ResolveStateStorage,Candidate,BlockBlobStorage,RebuildGraph,WriteZeroEntry,Restored,Discover,Lock,Active,ResolveLeader,Terminating])`
39+
: undefined;
3840

3941
const schemaPathParam = React.useMemo(() => {
4042
if (!isNil(path) && !isNil(databaseFullPath)) {

0 commit comments

Comments
 (0)