Skip to content

Commit

Permalink
changed default value of render to true
Browse files Browse the repository at this point in the history
  • Loading branch information
yaten2302 committed Jun 14, 2024
1 parent b098a33 commit db535ab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/taipy-gui/src/components/Taipy/Progress.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ const Progress = (props: ProgressBarProps) => {
const { linear, showValue } = props;

const value = useDynamicProperty(props.value, props.defaultValue, undefined);
const render = useDynamicProperty(props.render, props.defaultRender, undefined);
const render = useDynamicProperty(props.render, props.defaultRender, true);

if (!render) {
return null;
Expand Down

0 comments on commit db535ab

Please sign in to comment.