Skip to content

Commit

Permalink
Merge branch 'main' into dependabot/npm_and_yarn/crypto-js-4.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
dyersituations committed Apr 25, 2024
2 parents 347473d + b933b3c commit 3e80c0e
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 14 deletions.
1 change: 1 addition & 0 deletions .github/workflows/lint-name.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ jobs:
- uses: actions/checkout@v3
with:
repository: kiva/github-actions
ref: main
token: ${{ env.GITHUB_PAT }}
path: .github/
- name: lint-pr
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/release-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ jobs:
- uses: actions/checkout@v3
with:
repository: kiva/github-actions
ref: main
token: ${{ env.GITHUB_PAT }}
path: .github/
- uses: snow-actions/[email protected]
Expand Down Expand Up @@ -61,6 +62,7 @@ jobs:
uses: actions/checkout@v3
with:
repository: kiva/github-actions
ref: main
token: ${{ env.GITHUB_PAT }}
path: .github/
- uses: snow-actions/[email protected]
Expand Down
24 changes: 12 additions & 12 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions src/components/LoanCards/KvClassicLoanCardContainer.vue
Original file line number Diff line number Diff line change
Expand Up @@ -232,8 +232,8 @@ export default {
const tagsData = tagList.filter(tag => {
return tags.includes(tag.name);
});
const themesData = themeList.filter(tag => {
return themes.includes(tag.name);
const themesData = themeList.filter(theme => {
return themes.includes(theme.name);
});
this.loan = {
...this.loan,
Expand Down

0 comments on commit 3e80c0e

Please sign in to comment.