Skip to content

Commit 80d05dc

Browse files
committed
refactor: rename full to fullWidth
1 parent 3b9230d commit 80d05dc

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@
6565
},
6666
"peerDependencies": {
6767
"@edx/frontend-platform": "^7.0.0 || ^8.0.0",
68-
"@openedx/paragon": "git+ssh://github.com/open-craft/paragon#0e0a66a794fbb6ccf61f7afa9264e096f132cd1b",
68+
"@openedx/paragon": "git+ssh://github.com/open-craft/paragon#d5642191a21d532cd6fbe13519dfecd9e1518601",
6969
"prop-types": "^15.5.10",
7070
"react": "^16.9.0 || ^17.0.0",
7171
"react-dom": "^16.9.0 || ^17.0.0"

src/components/studio-footer/StudioFooter.jsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ ensureConfig([
2828
], 'Studio Footer component');
2929

3030
const StudioFooter = ({
31-
full,
31+
fullWidth,
3232
}) => {
3333
const intl = useIntl();
3434
const [isOpen, setIsOpen] = useState(false);
@@ -51,7 +51,7 @@ const StudioFooter = ({
5151
</Button>
5252
<div className="col border-top ml-2" />
5353
</div>
54-
<Container size={full ? undefined : 'xl'} className="px-4">
54+
<Container size={fullWidth ? undefined : 'xl'} className="px-4">
5555
<TransitionReplace>
5656
{isOpen ? (
5757
<ActionRow key="help-link-button-row" className="py-4" data-testid="helpButtonRow">
@@ -141,11 +141,11 @@ const StudioFooter = ({
141141
};
142142

143143
StudioFooter.propTypes = {
144-
full: propTypes.bool,
144+
fullWidth: propTypes.bool,
145145
};
146146

147147
StudioFooter.defaultProps = {
148-
full: false,
148+
fullWidth: false,
149149
};
150150

151151
export default StudioFooter;

0 commit comments

Comments
 (0)