Skip to content

Commit

Permalink
chore: fix bad type in settings
Browse files Browse the repository at this point in the history
  • Loading branch information
nytamin committed Aug 27, 2024
1 parent 81d8e77 commit a58d25e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions meteor/client/ui/Settings/Studio/PackageManager.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -503,18 +503,18 @@ export const StudioPackageManagerSettings = withTranslation()(
</span>
</label>
<label className="field">
<LabelActual label={t('Supports HEAD requests')} />
<LabelActual label={t('Does NOT support HEAD requests')} />
<EditAttribute
modifiedClassName="bghl"
attribute={`packageContainers.${containerId}.container.accessors.${accessorId}.supportHEAD`}
attribute={`packageContainers.${containerId}.container.accessors.${accessorId}.useGETinsteadOfHEAD`}
obj={this.props.studio}
type="checkbox"
collection={Studios}
className="input text-input input-l"
></EditAttribute>
<span className="text-s dimmed field-hint">
{t(
'Set to true if the HTTP server supports HEAD requests. (otherwise GET requests will be used to check availability)'
"If set, Package Manager assumes that the source doesn't support HEAD requests and will use GET instead. If false, HEAD requests will be sent to check availability."
)}
</span>
</label>
Expand Down

0 comments on commit a58d25e

Please sign in to comment.