bug fix
This commit is contained in:
parent
7b3e220984
commit
9a08221c42
@ -806,9 +806,9 @@ ul {
|
||||
#display_task_search_wrapper {
|
||||
position: -webkit-sticky;
|
||||
position: sticky;
|
||||
top: 0;
|
||||
top: -1rem;
|
||||
z-index: 1;
|
||||
padding-bottom: 0.5rem;
|
||||
padding: 0.5rem 0;
|
||||
background: rgba(var(--background-color), 1);
|
||||
}
|
||||
|
||||
|
||||
2
css/main.min.css
vendored
2
css/main.min.css
vendored
File diff suppressed because one or more lines are too long
@ -771,9 +771,9 @@ ul {
|
||||
}
|
||||
#display_task_search_wrapper {
|
||||
position: sticky;
|
||||
top: 0;
|
||||
top: -1rem;
|
||||
z-index: 1;
|
||||
padding-bottom: 0.5rem;
|
||||
padding: 0.5rem 0;
|
||||
background: rgba(var(--background-color), 1);
|
||||
}
|
||||
#display_task_list {
|
||||
|
||||
@ -2927,8 +2927,10 @@
|
||||
// remove task from displayed list
|
||||
const taskId = `${appState.params.id}_${appState.params.branch}_${currentTask.dataset.taskId}`;
|
||||
const filteredTasks = RIBC.getDisplayedTasks().filter(task => task !== taskId)
|
||||
RIBC.admin.setDisplayedTasks(filteredTasks)
|
||||
renderBranchTasks()
|
||||
adminDataChanged();
|
||||
notify('Task marked as completed', 'success')
|
||||
}
|
||||
function rateParticipants() {
|
||||
document.querySelectorAll('.rating-part').forEach((ratingPart) => {
|
||||
|
||||
Loading…
Reference in New Issue
Block a user