mirror of
https://github.com/go-gitea/gitea.git
synced 2025-08-17 06:04:04 +09:00
Merge branch 'main' into feature/bots
This commit is contained in:
@ -32,6 +32,7 @@ export default {
|
||||
},
|
||||
data: () => ({
|
||||
colorRange: [
|
||||
'var(--color-secondary-alpha-70)',
|
||||
'var(--color-secondary-alpha-70)',
|
||||
'var(--color-primary-light-4)',
|
||||
'var(--color-primary-light-2)',
|
||||
@ -50,6 +51,12 @@ export default {
|
||||
return s;
|
||||
}
|
||||
},
|
||||
mounted() {
|
||||
// work around issue with first legend color being rendered twice and legend cut off
|
||||
const legend = document.querySelector('.vch__external-legend-wrapper');
|
||||
legend.setAttribute('viewBox', '12 0 80 10');
|
||||
legend.style.marginRight = '-12px';
|
||||
},
|
||||
methods: {
|
||||
handleDayClick(e) {
|
||||
// Reset filter if same date is clicked
|
||||
|
Reference in New Issue
Block a user