mirror of
https://github.com/owncast/owncast.git
synced 2024-10-10 19:16:02 +00:00
Limit icon size. Closes https://github.com/owncast/owncast/issues/890
This commit is contained in:
parent
70f33b624f
commit
190b15e592
@ -184,7 +184,7 @@ export default function Actions() {
|
|||||||
dataIndex: 'icon',
|
dataIndex: 'icon',
|
||||||
key: 'icon',
|
key: 'icon',
|
||||||
render: (url: string) => {
|
render: (url: string) => {
|
||||||
return url ? <img src={url} /> : null;
|
return url ? <img style={{width: '2vw'}} src={url} /> : null;
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@ -283,7 +283,10 @@ export default function Actions() {
|
|||||||
return (
|
return (
|
||||||
<div>
|
<div>
|
||||||
<Title>External Actions</Title>
|
<Title>External Actions</Title>
|
||||||
<Paragraph>Description goes here.</Paragraph>
|
<Paragraph>
|
||||||
|
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.
|
||||||
|
</Paragraph>
|
||||||
<Paragraph>
|
<Paragraph>
|
||||||
Read more about how to use actions, with examples, at{' '}
|
Read more about how to use actions, with examples, at{' '}
|
||||||
<a href="https://owncast.online/thirdparty/?source=admin" target="_blank"
|
<a href="https://owncast.online/thirdparty/?source=admin" target="_blank"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user