Skip to content

Commit

Permalink
[BUGFIX] Fix typo in clipboard and SettingsController
Browse files Browse the repository at this point in the history
Resolves: #98183
Releases: main, 11.5
Change-Id: Ib4d123e86a9b158b86e20322fc53ca94ff5b9be7
Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/75528
Tested-by: core-ci <typo3@b13.com>
Tested-by: Nikita Hovratov <nikita.h@live.de>
Reviewed-by: Nikita Hovratov <nikita.h@live.de>
  • Loading branch information
peterkraume authored and nhovratov committed Aug 21, 2022
1 parent 19633a3 commit 90aab17
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Expand Up @@ -115,7 +115,7 @@ export class ClipboardPanel extends LitElement {
}
})
.catch((): TemplateResult => {
Notification.error('An error occured while fetching clipboard data');
Notification.error('An error occurred while fetching clipboard data');
return html``;
});
}
Expand Down
Expand Up @@ -29,7 +29,7 @@ var __decorate=this&&this.__decorate||function(e,t,a,i){var n,l=arguments.length
</tbody>
</tabel>
</div>
`}return c.error("Clipboard data could not be fetched"),a.html``}).catch(()=>(c.error("An error occured while fetching clipboard data"),a.html``))}renderTab(e,t){return a.html`
`}return c.error("Clipboard data could not be fetched"),a.html``}).catch(()=>(c.error("An error occurred while fetching clipboard data"),a.html``))}renderTab(e,t){return a.html`
<tr>
<td colspan="2" class="nowrap">
<button type="button" class="btn btn-link p-0" title="${e.description}" data-action="setP" @click="${t=>this.updateClipboard(t,{CB:{setP:e.identifier}})}">
Expand Down
Expand Up @@ -542,7 +542,7 @@ public function featuresSaveAction(ServerRequestInterface $request): ResponseInt
$message = "Successfully updated the following feature toggles:\n" . implode(",\n", $updatedFeatures);
$severity = FlashMessage::OK;
} else {
$message = 'An error occured while saving. Some settings may not have been updated.';
$message = 'An error occurred while saving. Some settings may not have been updated.';
$severity = FlashMessage::ERROR;
}
} else {
Expand Down

0 comments on commit 90aab17

Please sign in to comment.