Skip to content

Commit

Permalink
do changes
Browse files Browse the repository at this point in the history
  • Loading branch information
FelixTJDietrich committed Aug 10, 2024
1 parent 46077a6 commit 7eef4b7
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 10 deletions.
9 changes: 0 additions & 9 deletions .github/workflows/chromatic.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,15 +28,6 @@ jobs:
files: |
webapp/src/app/**
webapp/.storybook/**
- name: List all changed files
env:
ALL_CHANGED_FILES: ${{ steps.changed-files.outputs.all_changed_files }}
ANY_CHANGED: ${{ steps.changed-files.outputs.any_changed }}
run: |
for file in ${ALL_CHANGED_FILES}; do
echo "$file was changed"
echo Did any files change: ${ANY_CHANGED}
done
chromatic:
name: Run Chromatic
Expand Down
2 changes: 1 addition & 1 deletion webapp/src/app/ui/button/button.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ interface ButtonVariants extends VariantProps<typeof buttonVariants> {}
templateUrl: './button.component.html'
})
export class ButtonComponent {
class = input<ClassValue>('bg-red-400 outline-1');
class = input<ClassValue>('bg-red-400');
variant = input<ButtonVariants['variant']>('default');
size = input<ButtonVariants['size']>('default');
disabled = input<boolean>(false);
Expand Down

0 comments on commit 7eef4b7

Please sign in to comment.