UI: action runner state icons in organization misplaces #11000

Closed
opened 2025-11-02 09:24:28 -06:00 by GiteaMirror · 2 comments
Owner

Originally created by @Bisstocuz on GitHub (Jun 9, 2023).

Description

Look at the screenshots below.

If there are two runners in the list, the bug will appear.

Gitea Version

1.19.3

Can you reproduce the bug on the Gitea demo site?

Yes

Log Gist

No response

Screenshots

image

Git Version

No response

Operating System

Linux

How are you running Gitea?

Use docker-compose.yml:

networks:
  gitea:
    external: false

volumes:
  caddy_data:
    external: true
  caddy_config:

services:
  db:
    image: mysql:8
    container_name: mysql
    restart: always
    environment:
      MYSQL_ROOT_PASSWORD: password
      MYSQL_DATABASE: gitea
      MYSQL_USER: gitea
      MYSQL_PASSWORD: password
    volumes:
      - /mnt/gitea/mysql:/var/lib/mysql
    networks:
      - gitea

  gitea:
    image: gitea/gitea:1.19
    container_name: gitea
    environment:
      - USER_UID=113
      - USER_GID=121
      - GITEA__database__HOST=db:3306
      - GITEA__database__NAME=gitea
      - GITEA__database__USER=gitea
      - GITEA__database__PASSWD=password
    depends_on:
      - db
    restart: always
    networks:
      - gitea
    volumes:
      - /mnt/gitea/data:/data
      - /etc/timezone:/etc/timezone:ro
      - /etc/localtime:/etc/localtime:ro
    ports:
      #- "3000:3000"
      - "22:22"

  caddy:
    image: caddy:2
    container_name: caddy
    restart: always
    volumes:
      - ./Caddyfile:/etc/caddy/Caddyfile
      - caddy_data:/data
      - caddy_config:/config
    ports:
      - "80:80"
      - "443:443"
      - "443:443/udp"
    networks:
      - gitea

Database

MySQL

Originally created by @Bisstocuz on GitHub (Jun 9, 2023). ### Description Look at the screenshots below. If there are two runners in the list, the bug will appear. ### Gitea Version 1.19.3 ### Can you reproduce the bug on the Gitea demo site? Yes ### Log Gist _No response_ ### Screenshots ![image](https://github.com/go-gitea/gitea/assets/42398278/d57134d7-aa07-4879-80d3-d8acffc722f7) ### Git Version _No response_ ### Operating System Linux ### How are you running Gitea? Use `docker-compose.yml`: ```yml networks: gitea: external: false volumes: caddy_data: external: true caddy_config: services: db: image: mysql:8 container_name: mysql restart: always environment: MYSQL_ROOT_PASSWORD: password MYSQL_DATABASE: gitea MYSQL_USER: gitea MYSQL_PASSWORD: password volumes: - /mnt/gitea/mysql:/var/lib/mysql networks: - gitea gitea: image: gitea/gitea:1.19 container_name: gitea environment: - USER_UID=113 - USER_GID=121 - GITEA__database__HOST=db:3306 - GITEA__database__NAME=gitea - GITEA__database__USER=gitea - GITEA__database__PASSWD=password depends_on: - db restart: always networks: - gitea volumes: - /mnt/gitea/data:/data - /etc/timezone:/etc/timezone:ro - /etc/localtime:/etc/localtime:ro ports: #- "3000:3000" - "22:22" caddy: image: caddy:2 container_name: caddy restart: always volumes: - ./Caddyfile:/etc/caddy/Caddyfile - caddy_data:/data - caddy_config:/config ports: - "80:80" - "443:443" - "443:443/udp" networks: - gitea ``` ### Database MySQL
GiteaMirror added the topic/gitea-actionstype/bugtopic/ui labels 2025-11-02 09:24:28 -06:00
Author
Owner

@metiftikci commented on GitHub (May 23, 2024):

can you still reproduce this?

@metiftikci commented on GitHub (May 23, 2024): can you still reproduce this?
Author
Owner

@lunny commented on GitHub (May 24, 2024):

Yeah, I think this has been resolved. I will close this one and feel free to reopen if it can be reproduced. Thanks @metiftikci

@lunny commented on GitHub (May 24, 2024): Yeah, I think this has been resolved. I will close this one and feel free to reopen if it can be reproduced. Thanks @metiftikci
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: github-starred/gitea#11000