You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The admin "Edit station" button was positioned in matListItemMeta alongside the per-user approval status badges, visually implying that editing a station requires approval.
Changes
Moves the "Edit station" button out of matListItemMeta and into a dedicated matListItemLine below the station description, grouping it with the station's own details rather than with the access/approval status.
This pull request has been ignored for the connected project cpibdotiiptojhawnpff because there are no changes detected in backend/supabase directory. You can change this behaviour in Project Integrations Settings ↗︎.
@copilot the edit button text is not visible because the bottom of the row is being cut off. I can just barely see the hover highlight.
<img width="2505" height="1928" alt="image" src="https://githu...
Fixed in the latest commit. The lines="3" was capping the list item height and clipping the extra line added for the edit button. Changed it to [lines]="isClubAdmin() ? 4 : 3" so admins get the extra height to accommodate the button.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
The admin "Edit station" button was positioned in
matListItemMetaalongside the per-user approval status badges, visually implying that editing a station requires approval.Changes
matListItemMetaand into a dedicatedmatListItemLinebelow the station description, grouping it with the station's own details rather than with the access/approval status.