diff --git a/components/GridRep/index.scss b/components/GridRep/index.scss
index 0b18dffa..1664f029 100644
--- a/components/GridRep/index.scss
+++ b/components/GridRep/index.scss
@@ -117,24 +117,25 @@
.bottom {
display: flex;
flex-direction: row;
+ color: $grey-55;
+ font-size: $font-small;
a.user:hover {
color: var(--link-text-hover);
}
}
- .raid,
- .user,
- time {
- color: $grey-55;
- font-size: $font-small;
- }
-
- .raid,
+ .Properties,
.user {
flex-grow: 1;
}
+ .Properties {
+ .full_auto {
+ color: var(--full-auto-text);
+ }
+ }
+
.raid {
margin-bottom: calc($unit / 2);
}
diff --git a/components/GridRep/index.tsx b/components/GridRep/index.tsx
index d58034f7..bf7b1eef 100644
--- a/components/GridRep/index.tsx
+++ b/components/GridRep/index.tsx
@@ -22,6 +22,7 @@ interface Props {
raid: Raid
grid: GridWeapon[]
user?: User
+ fullAuto: boolean
favorited: boolean
createdAt: Date
displayUser?: boolean | false
@@ -161,8 +162,17 @@ const GridRep = (props: Props) => {
{props.name ? props.name : t('no_title')}
-
- {props.raid ? props.raid.name[locale] : t('no_raid')}
+
+
+ {props.raid ? props.raid.name[locale] : t('no_raid')}
+
+ {props.fullAuto ? (
+
+ {` ยท ${t('party.details.labels.full_auto')}`}
+
+ ) : (
+ ''
+ )}