change isSelf

This commit is contained in:
Fine 2025-05-29 18:25:53 +08:00
parent 042e7dfb8f
commit 5826bc0f6e
2 changed files with 2 additions and 2 deletions

View File

@ -20,7 +20,7 @@ import type { MetricsTTL, RecordsTTL } from "@/types/app";
export type ClusterNode = { export type ClusterNode = {
host: string; host: string;
port: number; port: number;
isSelf: boolean; self: boolean;
}; };
export type ConfigTTL = { export type ConfigTTL = {

View File

@ -103,7 +103,7 @@ limitations under the License. -->
> >
<el-table-column prop="host" label="Host" width="280" /> <el-table-column prop="host" label="Host" width="280" />
<el-table-column prop="port" label="Port" width="180" /> <el-table-column prop="port" label="Port" width="180" />
<el-table-column prop="isSelf" label="Self" width="180" /> <el-table-column prop="self" label="Self" width="180" />
</el-table> </el-table>
<el-pagination <el-pagination
class="pagination" class="pagination"