mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-04-02 13:45:10 -05:00
Merge pull request #2513 from paperless-ngx/fix-2511
Fix: comments not showing in search until after manual reindex in v1.12
This commit is contained in:
commit
8e8b2d7e8a
@ -26,7 +26,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<p class="card-text">
|
<p class="card-text">
|
||||||
<span *ngIf="document.__search_hit__ && document.__search_hit__.highlights" [innerHtml]="document.__search_hit__.highlights"></span>
|
<span *ngIf="document.__search_hit__ && document.__search_hit__.highlights" [innerHtml]="document.__search_hit__.highlights"></span>
|
||||||
<span *ngIf="document.__search_hit__ && document.__search_hit__.comment_highlights">
|
<span *ngIf="document.__search_hit__ && document.__search_hit__.comment_highlights" class="d-block">
|
||||||
<svg width="1em" height="1em" fill="currentColor" class="me-2">
|
<svg width="1em" height="1em" fill="currentColor" class="me-2">
|
||||||
<use xlink:href="assets/bootstrap-icons.svg#chat-left-text"/>
|
<use xlink:href="assets/bootstrap-icons.svg#chat-left-text"/>
|
||||||
</svg>
|
</svg>
|
||||||
|
@ -445,6 +445,10 @@ class DocumentViewSet(
|
|||||||
)
|
)
|
||||||
c.save()
|
c.save()
|
||||||
|
|
||||||
|
from documents import index
|
||||||
|
|
||||||
|
index.add_or_update_document(self.get_object())
|
||||||
|
|
||||||
return Response(self.getComments(doc))
|
return Response(self.getComments(doc))
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
logger.warning(f"An error occurred saving comment: {str(e)}")
|
logger.warning(f"An error occurred saving comment: {str(e)}")
|
||||||
@ -456,6 +460,11 @@ class DocumentViewSet(
|
|||||||
elif request.method == "DELETE":
|
elif request.method == "DELETE":
|
||||||
comment = Comment.objects.get(id=int(request.GET.get("id")))
|
comment = Comment.objects.get(id=int(request.GET.get("id")))
|
||||||
comment.delete()
|
comment.delete()
|
||||||
|
|
||||||
|
from documents import index
|
||||||
|
|
||||||
|
index.add_or_update_document(self.get_object())
|
||||||
|
|
||||||
return Response(self.getComments(doc))
|
return Response(self.getComments(doc))
|
||||||
|
|
||||||
return Response(
|
return Response(
|
||||||
|
Loading…
x
Reference in New Issue
Block a user