mirror of
https://github.com/datahub-project/datahub.git
synced 2025-07-31 21:36:08 +00:00
10 lines
293 B
TypeScript
10 lines
293 B
TypeScript
![]() |
import Component from '@ember/component';
|
||
|
import Configurator from 'wherehows-web/services/configurator';
|
||
|
|
||
|
export default class DatasetRelationships extends Component {
|
||
|
showLineageGraph: boolean = Configurator.getConfig('showLineageGraph', {
|
||
|
useDefault: true,
|
||
|
default: false
|
||
|
});
|
||
|
}
|