Skip to content

Commit

Permalink
Update jsx resource timeouts
Browse files Browse the repository at this point in the history
  • Loading branch information
NeonDaniel committed Oct 6, 2023
1 parent 9bd046c commit daeb42b
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions ovos_gui/res/gui/react/SYSTEM_AnimatedImageFrame.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,20 +15,20 @@ function RenderPage(props) {
id="title"
className="col-12 h2"
text={skill_props["title"] || null}
duration={2000}
duration={15000}
/>
<ContentElement
elementType="ImageFrame"
id={"image"}
className="col-12"
src={skill_props["image"] || null}
duration={2000}
duration={15000}
/>
<ContentElement
elementType="TextFrame"
className="col-12 h4"
text={skill_props["caption"] || null}
duration={2000}
duration={15000}
/>
</div>
);
Expand Down
6 changes: 3 additions & 3 deletions ovos_gui/res/gui/react/SYSTEM_ImageFrame.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,20 +15,20 @@ function RenderPage(props) {
id="title"
className="col-12 h2"
text={skill_props["title"] || null}
duration={2000}
duration={15000}
/>
<ContentElement
elementType="ImageFrame"
id={"image"}
className="col-12"
src={skill_props["image"] || null}
duration={2000}
duration={15000}
/>
<ContentElement
elementType="TextFrame"
className="col-12 h4"
text={skill_props["caption"] || null}
duration={2000}
duration={15000}
/>
</div>
);
Expand Down
2 changes: 1 addition & 1 deletion ovos_gui/res/gui/react/SYSTEM_TextFrame.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ function RenderPage(props) {
className={"col-12 h3"}
text={skill_props.text}
display={skill_props.display}
duration={150000}
duration={15000}
// TODO: duration from config
/>
</div>
Expand Down

0 comments on commit daeb42b

Please sign in to comment.