This commit is contained in:
sairaj mote 2022-12-18 16:37:11 +05:30
parent 7b3e220984
commit 9a08221c42
4 changed files with 7 additions and 5 deletions

View File

@ -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

File diff suppressed because one or more lines are too long

View File

@ -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 {

View File

@ -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) => {