mirror of
https://github.com/BreizhHardware/Jellystat.git
synced 2026-01-18 16:27:20 +01:00
added caching for github actions, fixed active tab prop invalid name error on settings
This commit is contained in:
8
.github/workflows/docker-image.yml
vendored
8
.github/workflows/docker-image.yml
vendored
@@ -38,6 +38,14 @@ jobs:
|
||||
with:
|
||||
username: ${{ secrets.DOCKER_USERNAME }}
|
||||
password: ${{ secrets.DOCKER_TOKEN }}
|
||||
|
||||
- name: Cache Docker layers
|
||||
uses: actions/cache@v3
|
||||
with:
|
||||
path: /tmp/.buildx-cache
|
||||
key: ${{ runner.os }}-buildx-${{ github.sha }}
|
||||
restore-keys: |
|
||||
${{ runner.os }}-buildx-
|
||||
|
||||
- name: Build Docker image
|
||||
uses: docker/build-push-action@v5
|
||||
|
||||
@@ -23,7 +23,7 @@ export default function Settings() {
|
||||
|
||||
return (
|
||||
<div className="settings my-2">
|
||||
<Tabs defaultActiveKey={activeTab} activeTab={activeTab} onSelect={setTab} variant="pills">
|
||||
<Tabs defaultActiveKey={activeTab} activeKey={activeTab} onSelect={setTab} variant="pills">
|
||||
<Tab
|
||||
eventKey="tabGeneral"
|
||||
className="bg-transparent my-2"
|
||||
|
||||
Reference in New Issue
Block a user