Skip to content

Commit

Permalink
Remove out-of-date API warning (backed up by more general exception m…
Browse files Browse the repository at this point in the history
…essage)
  • Loading branch information
lbwexler committed Jan 12, 2024
1 parent a0c687f commit d8ebd64
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions cmp/grid/columns/Column.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import {
RecordActionSpec,
StoreRecord
} from '@xh/hoist/data';
import {apiRemoved, logDebug, logWarn, throwIf, warnIf, withDefault} from '@xh/hoist/utils/js';
import {logDebug, logWarn, throwIf, warnIf, withDefault} from '@xh/hoist/utils/js';
import classNames from 'classnames';
import {
castArray,
Expand Down Expand Up @@ -674,11 +674,6 @@ export class Column {

if (!isEmpty(rest)) {
const keys = keysIn(rest);
apiRemoved('tooltipElement', {
test: rest['tooltipElement'],
msg: 'Use tooltip property instead.',
v: '58'
});
throw XH.exception(
`Column '${this.colId}' configured with unsupported key(s) '${keys}'. Custom config data must be nested within the 'appData' property.`
);
Expand Down

0 comments on commit d8ebd64

Please sign in to comment.