Skip to content

Commit

Permalink
Updates per Brian G request
Browse files Browse the repository at this point in the history
  • Loading branch information
bp-cos committed Sep 13, 2024
1 parent ff1f5b0 commit 62ffb59
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
key: cached_node_modules_${{ secrets.CACHE_VERSION }}_${{ hashFiles('**/yarn.lock') }}
restore-keys: cached_node_modules_${{ secrets.CACHE_VERSION }}_
- run: yarn build:test
- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v4
with:
name: dist
path: ./dist
Expand All @@ -67,7 +67,7 @@ jobs:
steps:
- uses: actions/checkout@v2
- uses: volta-cli/action@v1
- uses: actions/download-artifact@v2
- uses: actions/download-artifact@v4
with:
name: dist
path: ./dist
Expand All @@ -91,7 +91,7 @@ jobs:
steps:
- uses: actions/checkout@v2
- uses: volta-cli/action@v1
- uses: actions/download-artifact@v2
- uses: actions/download-artifact@v4
with:
name: dist
path: ./dist
Expand All @@ -115,7 +115,7 @@ jobs:
steps:
- uses: actions/checkout@v2
- uses: volta-cli/action@v1
- uses: actions/download-artifact@v2
- uses: actions/download-artifact@v4
with:
name: dist
path: ./dist
Expand All @@ -139,7 +139,7 @@ jobs:
steps:
- uses: actions/checkout@v2
- uses: volta-cli/action@v1
- uses: actions/download-artifact@v2
- uses: actions/download-artifact@v4
with:
name: dist
path: ./dist
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -213,9 +213,10 @@ export default class PreprintStateMachine extends Component<StateMachineArgs>{
await this.preprint.save();
}

await this.preprint.reload();
}

await this.preprint.reload();

await this.router.transitionTo('preprints.detail', this.provider.id, this.preprint.id);
}

Expand Down

0 comments on commit 62ffb59

Please sign in to comment.