Skip to content

Commit

Permalink
updated default label color (#70)
Browse files Browse the repository at this point in the history
fixes #70
  • Loading branch information
dheidemann committed Jul 30, 2024
1 parent 35aac9f commit c4fef82
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/graph/schema.resolvers.go
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ func (r *mutationResolver) DeleteRoom(ctx context.Context, number string, buildi
// AddLabel is the resolver for the addLabel field.
func (r *mutationResolver) AddLabel(ctx context.Context, label models.Label) (string, error) {
if label.Color == "" {
label.Color = "#F1F5F9"
label.Color = "#D1D1D1"
}

if _, err := r.DB.NewInsert().
Expand Down

0 comments on commit c4fef82

Please sign in to comment.