Skip to content

Commit

Permalink
update node version
Browse files Browse the repository at this point in the history
  • Loading branch information
Fine0830 committed Feb 20, 2025
1 parent 7008c14 commit 1a82560
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x, 18.x, 20.x]
node-version: [18.x, 20.x, 22.x]
steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
Expand Down
20 changes: 10 additions & 10 deletions src/views/dashboard/related/topology/service/ServiceMap.vue
Original file line number Diff line number Diff line change
Expand Up @@ -99,16 +99,16 @@ limitations under the License. -->
<Settings @update="updateSettings" @updateNodes="freshNodes" />
</div>
<div class="tool flex-h">
<span v-show="graphConfig.showDepth">
<div class="flex-h" v-show="graphConfig.showDepth">
<span class="label">{{ t("currentDepth") }}</span>
<Selector class="inputs" :value="depth" :options="DepthList" @change="changeDepth" />
</span>
<span class="switch-icon ml-5" title="Settings" @click="setConfig" v-if="dashboardStore.editMode">
</div>
<div class="switch-icon ml-5" title="Settings" @click="setConfig" v-if="dashboardStore.editMode">
<Icon size="middle" iconName="settings" />
</span>
<span class="switch-icon ml-5" title="Back to overview topology" @click="backToTopology">
</div>
<div class="switch-icon ml-5" title="Back to overview topology" @click="backToTopology">
<Icon size="middle" iconName="keyboard_backspace" />
</span>
</div>
</div>
<div
class="operations-list"
Expand Down Expand Up @@ -674,8 +674,8 @@ limitations under the License. -->

.label {
color: var(--sw-topology-color);
display: inline-block;
margin-right: 5px;
line-height: 32px;
width: 120px;
}

.operations-list {
Expand Down Expand Up @@ -713,8 +713,8 @@ limitations under the License. -->
background: var(--sw-topology-switch-icon);
color: $text-color;
display: inline-block;
padding: 2px 4px;
border-radius: 3px;
padding: 5px 4px;
border-radius: 2px;
}

.topo-line {
Expand Down

0 comments on commit 1a82560

Please sign in to comment.