Skip to content

Commit

Permalink
refactor: rename 'Request Group' in Settings to 'Folder'
Browse files Browse the repository at this point in the history
  • Loading branch information
NickHackman committed May 3, 2021
1 parent 81f1b9c commit 9e642d1
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -250,8 +250,8 @@ class RequestGroupSettingsModal extends React.PureComponent<Props, State> {
<label>
Move/Copy to Workspace
<HelpTooltip position="top" className="space-left">
Copy or move the current request group to a new workspace. It will be placed at the
root of the new workspace's folder structure.
Copy or move the current folder to a new workspace. It will be placed at the root of
the new workspace's folder structure.
</HelpTooltip>
<select
value={activeWorkspaceIdToCopyTo || '__NULL__'}
Expand Down Expand Up @@ -306,7 +306,7 @@ class RequestGroupSettingsModal extends React.PureComponent<Props, State> {
<DebouncedInput
delay={500}
type="text"
placeholder={requestGroup.url || 'My Request Group'}
placeholder={requestGroup.url || 'My Folder'}
defaultValue={requestGroup.name}
onChange={this._handleNameChange}
/>
Expand All @@ -323,7 +323,7 @@ class RequestGroupSettingsModal extends React.PureComponent<Props, State> {
return (
<Modal ref={this._setModalRef} freshState>
<ModalHeader>
Request Group Settings{' '}
Folder Settings{' '}
<span className="txt-sm selectable faint monospace">
{requestGroup ? requestGroup._id : ''}
</span>
Expand Down

0 comments on commit 9e642d1

Please sign in to comment.