Skip to content

Commit

Permalink
add space between plugin contents
Browse files Browse the repository at this point in the history
  • Loading branch information
benzkji committed Nov 19, 2024
1 parent c9651ab commit 54f51f9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion postgres_searchindex/contrib/djangocms/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ def get_placeholder_content(self, obj, language, request):
plugins = self.get_plugin_queryset(language).filter(placeholder=placeholder)
text = ""
for base_plugin in plugins:
text += self.get_plugin_search_text(base_plugin, request)
text += " " + self.get_plugin_search_text(base_plugin, request)
return text

def get_plugin_search_text(self, base_plugin, request):
Expand Down

0 comments on commit 54f51f9

Please sign in to comment.