diff --git a/.github/workflows/docker.yaml b/.github/workflows/docker.yaml index 41b3f632cd..33c6e5b20c 100644 --- a/.github/workflows/docker.yaml +++ b/.github/workflows/docker.yaml @@ -191,6 +191,13 @@ jobs: - name: Set up Docker Buildx uses: docker/setup-buildx-action@v3 + - name: Extract Version from package.json + id: extract_version + run: | + VERSION=$(jq -r '.version' ./frontend/package.json) + echo "VERSION=${VERSION}" >> $GITHUB_ENV + echo "Extracted version: ${VERSION}" + - name: Docker meta id: meta uses: docker/metadata-action@v5 @@ -204,7 +211,7 @@ jobs: type=sha,format=short type=semver,pattern={{version}},event=tag type=ref,event=tag - type=raw,value=latest,enable={{is_default_branch}} + type=raw,value=${{ env.VERSION }},enable={{is_default_branch}} - name: Login to Docker Hub uses: docker/login-action@v3 diff --git a/frontend/src/app/features/block-production/won-slots/table/block-production-won-slots-table.component.ts b/frontend/src/app/features/block-production/won-slots/table/block-production-won-slots-table.component.ts index 80dd9c36eb..c2965746d5 100644 --- a/frontend/src/app/features/block-production/won-slots/table/block-production-won-slots-table.component.ts +++ b/frontend/src/app/features/block-production/won-slots/table/block-production-won-slots-table.component.ts @@ -32,7 +32,7 @@ export class BlockProductionWonSlotsTableComponent extends MinaTableRustWrapper< { name: 'status', sort: 'message' }, { name: 'age', sort: 'slotTime' }, { name: 'height' }, - { name: 'global slot', sort: 'globalSlot' }, + { name: 'slot in epoch', sort: 'globalSlot' }, { name: 'transactions', sort: 'transactionsTotal' }, { name: 'SNARKs', sort: 'completedWorksCount' }, { name: 'SNARK fees', sort: 'snarkFees' },