convoy icon indicating copy to clipboard operation
convoy copied to clipboard

[Bug report]: Project type selection is broken in v24.1.2

Open duuri-mollinen opened this issue 1 year ago • 2 comments

Describe the bug

A clear and concise description of what the bug is.

To Reproduce

Steps to reproduce the behavior:

  1. Start new instance with docker compose
  2. Create organisation
  3. Attempt to create project
  4. Project type radio buttons are not accepting selections

Expected behavior

User is able to select either incoming or outgoing web hook type

Screenshots

image

Stack (please complete the following information):

version: "3"

services: web: image: docker.cloudsmith.io/convoy/convoy/frain-dev/convoy:v24.1.2 command: ["/start.sh"] volumes: - ./convoy.json:/convoy.json restart: on-failure ports: - "5005:5005" healthcheck: test: ["CMD-SHELL", "wget -q --spider localhost:5005/health"] interval: 5s timeout: 15s retries: 3 start_period: 5s depends_on: - postgres - redis_server

worker:
    image: docker.cloudsmith.io/convoy/convoy/frain-dev/convoy:v24.1.2
    command: ["./cmd", "worker", "--config", "convoy.json"]
    volumes:
        - ./convoy.json:/convoy.json
    restart: on-failure
    depends_on:
        web:
            condition: service_healthy

stream:
    image: docker.cloudsmith.io/convoy/convoy/frain-dev/convoy:v24.1.2
    command: ["./cmd", "stream", "--config", "convoy.json"]
    volumes:
        - ./convoy.json:/convoy.json
    restart: on-failure
    depends_on:
        web:
            condition: service_healthy

ingest:
    image: docker.cloudsmith.io/convoy/convoy/frain-dev/convoy:v24.1.2
    command: ["./cmd", "ingest", "--config", "convoy.json"]
    volumes:
        - ./convoy.json:/convoy.json
    restart: on-failure
    depends_on:
        web:
            condition: service_healthy

postgres:
    image: postgres:15.2-alpine
    restart: unless-stopped
    environment:
        POSTGRES_DB: convoy
        POSTGRES_USER: convoy
        POSTGRES_PASSWORD: convoy
        PGDATA: /data/postgres
    volumes:
      - postgres_data:/data/postgres

redis_server:
    image: redis:alpine
    restart: always
    volumes:
      - redis_data:/data

volumes: postgres_data: redis_data:

Additional context

Please feel free to add any other context about the problem here.

duuri-mollinen avatar Feb 20 '24 06:02 duuri-mollinen

Hey @duuri-mollinen, can you try out 24.1.4 and see if this issue persists?

subomi avatar Feb 20 '24 06:02 subomi

Hey @duuri-mollinen, can you try out 24.1.4 and see if this issue persists?

Hi, a click to the box that describes the Incoming or outgoing web hook changes the type, but click to the radio button in either of those boxes still does nothing

duuri-mollinen avatar Mar 01 '24 08:03 duuri-mollinen

Hi @duuri-mollinen, we will make a fix for this and notify you once this is done

Oluwadaminiola avatar Mar 01 '24 08:03 Oluwadaminiola

Hi @duuri-mollinen, we will make a fix for this and notify you once this is done

@duuri-mollinen this has been resolved

Oluwadaminiola avatar Mar 01 '24 12:03 Oluwadaminiola