diff --git a/src/stores/neutron/static-route.js b/src/stores/neutron/static-route.js index e98380c8..04ca6502 100644 --- a/src/stores/neutron/static-route.js +++ b/src/stores/neutron/static-route.js @@ -38,6 +38,7 @@ export class StaticRouteStore extends Base { const { routes = [] } = data; routes.forEach((it) => { it.router_id = id; + it.id = `${it.destination} - ${it.nexthop}`; }); this.list.update({ data: routes,