Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
root = true

[*]
indent_size = 2
File renamed without changes.
8 changes: 4 additions & 4 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,15 @@ jobs:
- name: Get tag number
id: get_tag
run: echo ::set-output name=TAG::$(echo "$GITHUB_REF" | cut -d / -f 3)
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4 # zizmor: ignore[artipacked]
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 # zizmor: ignore[artipacked]
with:
persist-credentials: true
- uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4
- uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0.0
with:
node-version: 20
node-version: 22
registry-url: https://registry.npmjs.org/
- name: Cache node modules
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4
uses: actions/cache@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0
env:
cache-name: cache-node-modules
with:
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/manual.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,17 +15,17 @@ jobs:
permissions:
contents: write
steps:
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4 # zizmor: ignore[artipacked]
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 # zizmor: ignore[artipacked]
with:
fetch-depth: 0
filter: 'blob:none'
persist-credentials: true
- uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4
- uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0.0
with:
node-version: 20
node-version: 22
registry-url: https://registry.npmjs.org/
- name: Cache node modules
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4
uses: actions/cache@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0
env:
cache-name: cache-node-modules
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/zizmor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@ jobs:
contents: read

steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
with:
persist-credentials: false

- uses: zizmorcore/zizmor-action@b1d7e1fb5de872772f31590499237e7cce841e8e # v0.5.3
- uses: zizmorcore/zizmor-action@70fb788f84895a7701f5643d103d587e460b5c99 # v0.6.3
with:
config: .github/zizmor.yml
advanced-security: "false"
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion src/components/Carousel/Carousel.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ const Carousel: (props: {
aria-roledescription={
cardRef === undefined
? undefined
: accessibility?.carousel?.slideRoleDescription ?? 'Slide'
: (accessibility?.carousel?.slideRoleDescription ?? 'Slide')
}
>
{cloneElement(
Expand Down
2 changes: 1 addition & 1 deletion src/components/Conversation/Conversation.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ const ConversationInnerContainer = styled.ul`
::-webkit-scrollbar {
display: none;
}
`;
`;

const ConversationItemLi = styled.li`
width: 100%;
Expand Down
28 changes: 14 additions & 14 deletions src/model/buttons.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ export class QuickReply {
imageUrl?: string;

constructor(
label: string,
payload: string,
nlpText?: string,
imageUrl?: string,
label: string,
payload: string,
nlpText?: string,
imageUrl?: string,
) {
this.label = label;
this.payload = payload;
Expand All @@ -24,10 +24,10 @@ export class PostBackButton {
style?: string;

constructor(
label: string,
payload: string,
imageUrl?: string,
style?: string,
label: string,
payload: string,
imageUrl?: string,
style?: string,
) {
this.label = label;
this.payload = payload;
Expand All @@ -45,12 +45,12 @@ export class UrlButton {
style?: string;

constructor(
label: string,
url: string,
imageUrl?: string,
target?: string,
windowFeatures?: string,
style?: string,
label: string,
url: string,
imageUrl?: string,
target?: string,
windowFeatures?: string,
style?: string,
) {
this.label = label;
this.url = url;
Expand Down