Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions packages/components/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion packages/components/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@labkey/components",
"version": "7.45.5",
"version": "7.45.6",
"description": "Components, models, actions, and utility functions for LabKey applications and pages",
"sideEffects": false,
"files": [
Expand Down
4 changes: 4 additions & 0 deletions packages/components/releaseNotes/components.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
# @labkey/components
Components, models, actions, and utility functions for LabKey applications and pages

### version 7.45.6
*Released*: 8 July 2026
- Adjust width of API key display control so its copy-to-clipboard button doesn't wrap to the next line

### version 7.45.5
*Released*: 7 July 2026
- Export DetailDisplay
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ export const KeyGeneratorModal: FC<ModalProps> = props => {
<div className="top-padding form-group">
<input
aria-label={type + ' value'}
className="form-control api-key__input"
className="form-control api-key__display"
disabled
name={type + '_token'}
type="text"
Expand Down
6 changes: 6 additions & 0 deletions packages/components/src/theme/user.scss
Original file line number Diff line number Diff line change
Expand Up @@ -32,3 +32,9 @@ div:has(> .user-detail-modal) > .modal-backdrop {
.api-key__input {
display: inline-block;
}

// 90% to leave room for the copy-to-clipboard button when displaying the newly generated API key
.api-key__display {
width: 90%;
display: inline-block;
}