diff --git a/components/ContentUpdate/index.scss b/components/ContentUpdate/index.scss
index e69de29b..6d8cc907 100644
--- a/components/ContentUpdate/index.scss
+++ b/components/ContentUpdate/index.scss
@@ -0,0 +1,11 @@
+.Content.Version {
+ .Contents {
+ margin-bottom: $unit-3x;
+ }
+
+ .Notes h4 {
+ font-weight: $medium;
+ font-size: $font-regular;
+ margin-bottom: $unit-2x;
+ }
+}
diff --git a/components/ContentUpdate/index.tsx b/components/ContentUpdate/index.tsx
index 33aa6a32..13df3c85 100644
--- a/components/ContentUpdate/index.tsx
+++ b/components/ContentUpdate/index.tsx
@@ -117,9 +117,9 @@ const ContentUpdate = ({
{uncapItemSection('summon')}
{numNotes > 0 ? (
-
+
- {updates('labels.updates')}
+ {updates('labels.updates')}
{[...Array(numNotes)].map((e, i) => (
-
diff --git a/components/RaidDropdown/index.tsx b/components/RaidDropdown/index.tsx
index a1ef9ad6..27becd91 100644
--- a/components/RaidDropdown/index.tsx
+++ b/components/RaidDropdown/index.tsx
@@ -99,7 +99,12 @@ const RaidDropdown = React.forwardRef(
sortedRaids.length > 0 &&
sortedRaids[index].length > 0 &&
sortedRaids[index]
- .sort((a, b) => a.element - b.element)
+ .sort((a, b) => {
+ if (a.element > 0 && b.element > 0) return a.element - b.element
+ else if (a.name.en.includes('NM') && b.name.en.includes('NM'))
+ return a.level < b.level ? -1 : 1
+ else return a.name.en < b.name.en ? -1 : 1
+ })
.map((item, i) => (
{item.name[locale]}
diff --git a/components/UpdatesPage/index.tsx b/components/UpdatesPage/index.tsx
index 2b710efc..e79f3139 100644
--- a/components/UpdatesPage/index.tsx
+++ b/components/UpdatesPage/index.tsx
@@ -56,6 +56,16 @@ const UpdatesPage = () => {
return (
{common('about.segmented_control.updates')}
+