mirror of
https://github.com/status-im/consul.git
synced 2025-01-22 19:50:36 +00:00
dcb9800442
- Removes 'type' icons (basically the proxy icon, not the text itself) - Add support for Mesh Gateways plus their addresses This adds a 'Mesh Gateway' type label to service and service instance pages, plus a new 'Addresses' tab if the service is a Mesh Gateway showing a table of addresses for the service - plus tests
8 lines
177 B
JavaScript
8 lines
177 B
JavaScript
import { helper } from '@ember/component/helper';
|
|
|
|
export function objectEntries([obj = {}] /*, hash*/) {
|
|
return Object.entries(obj);
|
|
}
|
|
|
|
export default helper(objectEntries);
|