Your IP : 3.145.85.123


Current Path : /var/www/u0635749/data/www/hobbyclick.ru/public/hobbyclick/bitrix/js/ui/timeline/src/
Upload File :
Current File : /var/www/u0635749/data/www/hobbyclick.ru/public/hobbyclick/bitrix/js/ui/timeline/src/stagechange.js

import {Tag} from 'main.core';
import {History} from './history';

export class StageChange extends History
{
	renderMain(): Element
	{
		let stageChange = this.renderStageChange();
		if(!stageChange)
		{
			stageChange = '';
		}

		let fieldsChange = this.renderFieldsChange();
		if(!fieldsChange)
		{
			fieldsChange = '';
		}

		return Tag.render`<div class="ui-item-detail-stream-content-detail">
			${stageChange}
			${fieldsChange}
		</div>`;
	}
}