mirror of
https://github.com/datahub-project/datahub.git
synced 2025-07-29 12:30:07 +00:00
10 lines
281 B
TypeScript
10 lines
281 B
TypeScript
import Component from '@ember/component';
|
|
import { getConfig } from 'wherehows-web/services/configurator';
|
|
|
|
export default class DatasetRelationships extends Component {
|
|
showLineageGraph: boolean = getConfig('showLineageGraph', {
|
|
useDefault: true,
|
|
default: false
|
|
});
|
|
}
|