mirror of
https://github.com/weaveworks/scope.git
synced 2026-08-19 04:16:21 +00:00
Fixes grid -> topo transition.
- Also don't show table borders when no nodes. - 't' toggles table mode on/off, rather than 't'/v'
This commit is contained in:
@@ -87,10 +87,8 @@ class App extends React.Component {
|
||||
dispatch(pinNextMetric(-1));
|
||||
} else if (char === '>') {
|
||||
dispatch(pinNextMetric(1));
|
||||
} else if (char === 'v') {
|
||||
dispatch(toggleGridMode(false));
|
||||
} else if (char === 't') {
|
||||
dispatch(toggleGridMode(true));
|
||||
dispatch(toggleGridMode());
|
||||
} else if (char === 'q') {
|
||||
dispatch(unpinMetric());
|
||||
dispatch(selectMetric(null));
|
||||
|
||||
Reference in New Issue
Block a user