* Fix bad Scope#parent caching Now, we traverse the path until we find a parent scope. Fixes #6057. * Fix bad merge * Remove cached data * I need to stop using Github editor * Fix infinite loops due to scopable paths being moved up
10 lines
192 B
JavaScript
10 lines
192 B
JavaScript
import args from 'utils/url/args';
|
|
|
|
export default class App extends Component {
|
|
exportType = ''
|
|
|
|
componentDidMount() {
|
|
this.exportType = args.get('type', window.location.href);
|
|
}
|
|
}
|