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
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Fixed
- `EventObj` interface not being importable.
- `licenseKey` was not defaulted to `gpl`. #INT-3380

## 9.1.0 - 2025-07-31

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ export class EditorComponent extends Events implements AfterViewInit, ControlVal

@Input() public cloudChannel: Version = '8';
@Input() public apiKey = 'no-api-key';
@Input() public licenseKey?: string;
@Input() public licenseKey = 'gpl';
@Input() public init?: EditorOptions;
@Input() public id = '';
@Input() public initialValue?: string;
Expand Down
2 changes: 1 addition & 1 deletion tinymce-angular-component/src/test/ts/alien/TestHooks.ts
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ export const editorHook = <T = unknown>(component: Type<T>, moduleDef: TestModul
.map((v): EditorComponent => v.componentInstance)
.getOrDie('EditorComponent instance not found');

for (const [ key, value ] of Object.entries({ ...props, licenseKey: 'gpl' })) {
for (const [ key, value ] of Object.entries({ ...props })) {
(editorComponent as any)[key] = value;
}

Expand Down