diff --git a/ui/component/header/view.jsx b/ui/component/header/view.jsx
index b81022ad6..d8f26c3e9 100644
--- a/ui/component/header/view.jsx
+++ b/ui/component/header/view.jsx
@@ -147,7 +147,7 @@ const Header = (props: Props) => {
                   <MenuList className="menu__list--header">
                     <MenuItem className="menu__link" onSelect={() => history.push(`/$/${PAGES.PUBLISH}`)}>
                       <Icon aria-hidden icon={ICONS.PUBLISH} />
-                      {__('New Publish')}
+                      {__('Publish')}
                     </MenuItem>
                     <MenuItem className="menu__link" onSelect={openChannelCreate}>
                       <Icon aria-hidden icon={ICONS.CHANNEL} />
diff --git a/ui/page/fileListPublished/view.jsx b/ui/page/fileListPublished/view.jsx
index 67c78a723..51631abfb 100644
--- a/ui/page/fileListPublished/view.jsx
+++ b/ui/page/fileListPublished/view.jsx
@@ -36,7 +36,9 @@ function FileListPublished(props: Props) {
             loading={fetching}
             persistedStorageKey="claim-list-published"
             uris={urls}
-            headerAltControls={<Button button="link" label={__('New Publish')} navigate="/$/publish" />}
+            headerAltControls={
+              <Button button="link" label={__('New Publish')} navigate="/$/publish" onClick={() => clearPublish()} />
+            }
           />
           <Paginate totalPages={Math.ceil(Number(urlTotal) / Number(PAGE_SIZE))} loading={fetching} />
         </React.Fragment>
diff --git a/ui/scss/component/_card.scss b/ui/scss/component/_card.scss
index f04fa0216..b98edabe2 100644
--- a/ui/scss/component/_card.scss
+++ b/ui/scss/component/_card.scss
@@ -145,6 +145,15 @@
   .section__subtitle {
     margin-bottom: 0;
   }
+
+  .button {
+    font-size: var(--font-large);
+
+    .icon {
+      height: 20px;
+      width: 20px;
+    }
+  }
 }
 
 .card__body {