Skip to content

Commit

Permalink
fix: anchor positioning
Browse files Browse the repository at this point in the history
  • Loading branch information
SanderElias committed Nov 30, 2024
1 parent 2ce95a0 commit da2d294
Show file tree
Hide file tree
Showing 22 changed files with 14 additions and 2 deletions.
4 changes: 4 additions & 0 deletions .github/build-artifacts/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,10 @@ runs:
path: dist
# I only want to cache the dist folder for this workflow run
key: dist-${{ inputs.node-version }}-${{ github.run_id }}

# Set up GitHub Actions caching for Wireit.
- uses: google/wireit@setup-github-actions-caching/v2

- name: Build the dist artifacts, when not yet cached for this workflow
if: steps.cache-dist.outputs.cache-hit != 'true'
run: |
Expand Down
3 changes: 3 additions & 0 deletions .github/module-cache/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,9 @@ runs:
node_modules
# Cache as long as the depedencies in main package.json are the same
key: node-modules-${{ inputs.node-version }}-${{ steps.get-deps-hash.outputs.dependencyHash }}
# Set up GitHub Actions caching for Wireit.
- uses: google/wireit@setup-github-actions-caching/v2

- name: Install Dependencies , when not cached
if: steps.cache-node-modules.outputs.cache-hit != 'true'
run: |
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,11 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v3

# Set up GitHub Actions caching for Wireit.
- uses: google/wireit@setup-github-actions-caching/v2


- name: Get the build
uses: ./.github/build-artifacts
with:
Expand Down
2 changes: 1 addition & 1 deletion src/app/anchor-pos/anchor-pos.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ export class AnchorPosComponent {
currentPos = signal(0);

pos = computed(() => {
const p = `inset-area: ${this.posOptions[this.currentPos()]}`;
const p = `position-area: ${this.posOptions[this.currentPos()]}`;
console.log(p);
return p;
});
Expand Down
2 changes: 1 addition & 1 deletion src/app/routes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -220,5 +220,5 @@ export const routes: Routes = [
loadComponent: () => import('./stepper/stepper.component').then(m => m.StepperComponent),
},
// { path: '**', redirectTo: 'routeList' },
{ path: '**', redirectTo: 'stepper' },
{ path: '**', redirectTo: 'acnhorPosition' },
];
Binary file modified src/assets/snapshots/acnhorPosition.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified src/assets/snapshots/bigData.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified src/assets/snapshots/bintree.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified src/assets/snapshots/cells.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified src/assets/snapshots/cellsRaw.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified src/assets/snapshots/clock.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified src/assets/snapshots/filterSamp.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified src/assets/snapshots/observableState-hook.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified src/assets/snapshots/outOfOrder.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified src/assets/snapshots/resizePanel.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified src/assets/snapshots/routeList.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified src/assets/snapshots/rvt-.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified src/assets/snapshots/rvt.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified src/assets/snapshots/rxjsTest.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified src/assets/snapshots/snow.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified src/assets/snapshots/svgClock.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified src/assets/snapshots/svgTest.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit da2d294

Please sign in to comment.