Skip to content

Commit

Permalink
fix nuget?
Browse files Browse the repository at this point in the history
made keyboard nav optional
  • Loading branch information
Jonathan committed Feb 27, 2025
1 parent 54b8473 commit 0876fc7
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/nuget.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ on:
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v3
Expand Down
9 changes: 5 additions & 4 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,8 @@ jobs:
- run: npm publish --access=public
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
- name: Nuget
uses: ./.github/workflows/nuget
with:
NUGET_API_KEY: ${{ secrets.NUGET_API_KEY }}
#nuget on linux is broken
# - name: Nuget
# uses: ./.github/workflows/nuget
# with:
# NUGET_API_KEY: ${{ secrets.NUGET_API_KEY }}
2 changes: 1 addition & 1 deletion src/js/utilities/options.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export default interface Options {
debug?: boolean;
defaultDate?: DateTime;
display?: {
keyboardNavigation: boolean;
keyboardNavigation?: boolean;
toolbarPlacement?: 'top' | 'bottom';
components?: {
calendar?: boolean;
Expand Down

0 comments on commit 0876fc7

Please sign in to comment.