mirror of
https://github.com/Zagrios/bs-manager.git
synced 2026-07-03 14:08:25 +02:00
[bugfix] added missing bl-ranked indicator on maps items
This commit is contained in:
@@ -192,6 +192,7 @@ export const LocalMapsListPanel = forwardRef<LocalMapsListPanelRef, Props>(({ ve
|
||||
diffs={MapItemComponentPropsMapper.extractMapDiffs({ mapInfo: map.mapInfo, songDetails: map.songDetails })}
|
||||
mapId={map.songDetails?.id}
|
||||
ranked={map.songDetails?.ranked}
|
||||
blRanked={map.songDetails?.blRanked}
|
||||
autorId={map.songDetails?.uploader.id}
|
||||
likes={map.songDetails?.upVotes}
|
||||
createdAt={map.songDetails?.uploadedAt}
|
||||
|
||||
@@ -145,7 +145,9 @@ export const DownloadMapsModal: ModalComponent<void, { version: BSVersion; owned
|
||||
duration={map.metadata.duration}
|
||||
hash={map.versions.at(0).hash}
|
||||
likes={map.stats.upvotes}
|
||||
mapId={map.id} ranked={map.ranked}
|
||||
mapId={map.id}
|
||||
ranked={map.ranked}
|
||||
blRanked={map.blRanked}
|
||||
title={map.name}
|
||||
songAutor={map.metadata.songAuthorName}
|
||||
diffs={MapItemComponentPropsMapper.extractMapDiffs({ bsvMap: map })}
|
||||
|
||||
+3
-1
@@ -80,7 +80,9 @@ export const BsvPlaylistDetailsModal: ModalComponent<void, Props> = ({ resolver,
|
||||
duration={map.metadata.duration}
|
||||
hash={map.versions.at(0).hash}
|
||||
likes={map.stats.upvotes}
|
||||
mapId={map.id} ranked={map.ranked}
|
||||
mapId={map.id}
|
||||
ranked={map.ranked}
|
||||
blRanked={map.blRanked}
|
||||
title={map.name}
|
||||
songAutor={map.metadata.songAuthorName}
|
||||
diffs={MapItemComponentPropsMapper.extractMapDiffs({ bsvMap: map })}
|
||||
|
||||
+1
@@ -72,6 +72,7 @@ export const LocalPlaylistDetailsModal: ModalComponent<void, Props> = ({resolver
|
||||
diffs={MapItemComponentPropsMapper.extractMapDiffs({ mapInfo: map.mapInfo, songDetails: map.songDetails })}
|
||||
mapId={map.songDetails?.id}
|
||||
ranked={map.songDetails?.ranked}
|
||||
blRanked={map.songDetails?.blRanked}
|
||||
autorId={map.songDetails?.uploader.id}
|
||||
likes={map.songDetails?.upVotes}
|
||||
createdAt={map.songDetails?.uploadedAt}
|
||||
|
||||
Reference in New Issue
Block a user