Skip to content

Commentions Sidebar Still Appearing #84

@codebaradev

Description

@codebaradev

I'm sorry my issue messege is not well but I have an issue that my commention sidebar (notification) is still appearing even I use disableSidebar(true) and hideSubscribers(true). Is there a way to hide the notification sidebar? I use this comment component in the livewire component. The version that I use is

"kirschbaum-development/commentions": "^0.7.7",

Below is my code:

TaskInfolist.php

...
public function commentSection(Schema $schema): Schema
{
return $schema
->record($this->task)
->components([
Section::make()
->columns(1)
->components([
CommentsEntry::make('comments')
->extraAttributes([
'style' => ''
])
->mentionables(User::all())
->disableSidebar(true)
->hideSubscribers(true)
])
]);
}
...

task-infolist.blade.php

...

{{ $this->commentSection }}
... Image

Metadata

Metadata

Labels

No labels
No labels

Type

No type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions