From 190b15e592292bdd52564e2d7bbf63cae9a99562 Mon Sep 17 00:00:00 2001 From: Gabe Kangas Date: Sun, 4 Apr 2021 20:06:26 -0700 Subject: [PATCH] Limit icon size. Closes https://github.com/owncast/owncast/issues/890 --- web/pages/actions.tsx | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/web/pages/actions.tsx b/web/pages/actions.tsx index 92cbaf8c7..a39081842 100644 --- a/web/pages/actions.tsx +++ b/web/pages/actions.tsx @@ -184,7 +184,7 @@ export default function Actions() { dataIndex: 'icon', key: 'icon', render: (url: string) => { - return url ? : null; + return url ? : null; }, }, { @@ -283,7 +283,10 @@ export default function Actions() { return (
External Actions - Description goes here. + + External action URLs are 3rd party UI you can display, embedded, into your Owncast page when + a user clicks on a button to launch your action. + Read more about how to use actions, with examples, at{' '}