Fix dividers not marking agents as touched

This commit is contained in:
David Evans 2018-02-03 21:56:27 +00:00
parent 76037600ff
commit 46fdca1599
4 changed files with 16 additions and 3 deletions

View File

@ -5502,6 +5502,12 @@ define('sequence/components/Divider',[
env.addSpacing(']', {left: 0, right: config.extend});
}
renderPre() {
return {
agentIDs: ['[', ']'],
};
}
render({mode, height, formattedLabel}, env) {
const config = env.theme.getDivider(mode);

File diff suppressed because one or more lines are too long

View File

@ -24,6 +24,12 @@ define([
env.addSpacing(']', {left: 0, right: config.extend});
}
renderPre() {
return {
agentIDs: ['[', ']'],
};
}
render({mode, height, formattedLabel}, env) {
const config = env.theme.getDivider(mode);

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 7.3 KiB

After

Width:  |  Height:  |  Size: 7.4 KiB