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 7e7ec3e commit a6ee657
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/chromatic.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ jobs:
uses: tj-actions/changed-files@v44
with:
files: |
webapp/src/app/**
webapp/.storybook/**
app/**
.storybook/**
- name: List all changed files
env:
ALL_CHANGED_FILES: ${{ steps.changed-files.outputs.all_changed_files }}
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');
class = input<ClassValue>('bg-red-400 outline-1');
variant = input<ButtonVariants['variant']>('default');
size = input<ButtonVariants['size']>('default');
disabled = input<boolean>(false);
Expand Down

0 comments on commit a6ee657

Please sign in to comment.