Skip to content

Commit ce22439

Browse files
fix: resolve props of login button
1 parent 7860ebf commit ce22439

File tree

2 files changed

+3
-23
lines changed

2 files changed

+3
-23
lines changed

.github/workflows/ci.yml

Lines changed: 0 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -246,25 +246,3 @@ jobs:
246246
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
247247
GH_TOKEN: ${{ secrets.GH_TOKEN }}
248248
run: npx semantic-release
249-
250-
comment_pr_badge:
251-
timeout-minutes: 5
252-
name: Comment on PR with generated badge
253-
needs: [pre_ci, badge]
254-
if: ${{ github.actor != 'dependabot[bot]' && github.event_name == 'pull_request' && !contains(needs.pre_ci.outputs.commit_message, '#comment-badge') }}
255-
256-
runs-on: ubuntu-latest
257-
258-
steps:
259-
- name: Generate comment file with test coverage badge
260-
env:
261-
BADGE: ${{ needs.badge.outputs.markdown }}
262-
run: |
263-
echo "Badge: ${BADGE}"
264-
echo "${BADGE}" > output.md
265-
- name: Comment PR with test coverage badge
266-
uses: machine-learning-apps/[email protected]
267-
env:
268-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
269-
with:
270-
path: output.md

digitable-storybook/src/components/atoms/LoginButton/LoginButton.stories.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@ const Template: ComponentStory<typeof LoginButton> = (args) => <LoginButton {...
1313
export const Primary = Template.bind({});
1414

1515
Primary.args = {
16-
text: 'Войти'
16+
text: 'Войти',
17+
color: 'black',
18+
backgroundColor: 'green'
1719
};
1820

0 commit comments

Comments
 (0)