Skip to content

Commit

Permalink
fix: more words
Browse files Browse the repository at this point in the history
Signed-off-by: scures <scurescu@suse.com>
  • Loading branch information
scures authored and innobead committed Apr 17, 2024
1 parent 0d807f7 commit e245eee
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/codespell.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@ jobs:
uses: codespell-project/actions-codespell@v2
with:
check_filenames: true
skip: "*/**.yaml,*/**.yml,./scripts,./vendor,MAINTAINERS,LICENSE,go.mod,go.sum,**/*.lock,**/*.svg"
skip: "*/**.yaml,*/**.yml,./scripts,./vendor,MAINTAINERS,LICENSE,go.mod,go.sum,**/*-lock,**/*.svg"
2 changes: 1 addition & 1 deletion src/routes/volume/detail/VolumeInfo.js
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ function VolumeInfo({ selectedVolume, snapshotModalState, engineImages, hosts, c
tagNodeChild = selectedVolume.nodeSelector.map(forMapNode)
}

// resotring progress
// resorting progress
let restoreProgress = null
if (selectedVolume.restoreStatus && selectedVolume.restoreStatus.length > 0) {
let total = 0
Expand Down
4 changes: 2 additions & 2 deletions src/utils/dataDependency.js
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ const dependency = {
}],
},
}
const allWs = [{
const list = [{
ns: 'volume',
key: 'volumes',
}, {
Expand Down Expand Up @@ -176,7 +176,7 @@ export function getDataDependency(pathName) {

if (keys && keys.length === 1) {
let modal = dependency[keys[0]]
modal.stopWs = allWs.filter((item) => {
modal.stopWs = list.filter((item) => {
return modal.runWs.every((ele) => {
return ele.ns !== item.ns
})
Expand Down

0 comments on commit e245eee

Please sign in to comment.