code stringlengths 122 4.99k | label int64 0 14 |
|---|---|
diff --git a/README.md b/README.md @@ -37,6 +37,8 @@ This is the branch for `VuePress 1.x` and docs are available at https://v1.vuepr
## Contribution
+Want to contribute? Check our [issues for beginners](https://github.com/vuejs/vuepress/issues?q=is%3Aopen+is%3Aissue+label%3A%22good+first+issue%22)!
+
```bash
yarn boot... | 7 |
diff --git a/lib/plugins/blocks.js b/lib/plugins/blocks.js @@ -113,7 +113,7 @@ function inject(bot,{version}) {
for(var i=1;i<u;i++) {
na=a.plus(v);
// check to see that blocks don't inhabit the same position
- if(!pos1.floored().equals(pos2.floored())) {
+ if(!na.floored().equals(a.floored())) {
if(isNotEmpty(na)) ret... | 1 |
diff --git a/data.js b/data.js @@ -5657,5 +5657,13 @@ module.exports = [{
description: "DOM-Manipulation Framework",
url: "https://github.com/vitaly-t/excellent",
source: "https://raw.githubusercontent.com/vitaly-t/excellent/master/src/excellent.js"
+ },
+ {
+ name: "Beedle",
+ github: "hankchizljaw/beedle",
+ tags: ["... | 0 |
diff --git a/_platforms/it/fse.md b/_platforms/it/fse.md @@ -115,4 +115,4 @@ Segnalaci le proposte di miglioramento e/o le eventuali anomalie che hai riscont
<a class="btn btn-primary" href="https://github.com/ministero-salute/it-fse-support/issues" target="_blank"><i class="it-horn" />Richiesta di supporto tramite Git... | 1 |
diff --git a/embark-ui/src/containers/FiddleContainer.js b/embark-ui/src/containers/FiddleContainer.js @@ -29,7 +29,7 @@ class FiddleContainer extends Component {
}
componentDidUpdate(prevProps){
- if(prevProps.lastFiddle !== this.props.lastFiddle){
+ if(this.props.lastFiddle && (prevProps.lastFiddle !== this.props.las... | 1 |
diff --git a/src/libs/actions/Report.js b/src/libs/actions/Report.js @@ -675,7 +675,7 @@ function fetchAllReports(
* @param {Array} participantList
* @returns {Object}
*/
-function createOptimisticReport(participantList) {
+function createOptimisticChatReport(participantList) {
return {
chatType: '',
hasOutstandingIOU:... | 10 |
diff --git a/js/index.js b/js/index.js var onHashChangeCb = function(url) {
var url2params = function (s) {
+ s = s.replace(/;/g, '|');
var p = {};
var sep = '&';
if (s.search('&') !== -1)
urlHash = new L.Hash(null, null);
urlHash.additionalCb = function() {
var url = router.getUrl(routing.getWaypoints(), null).sub... | 14 |
diff --git a/server/handlers/awsJobs.js b/server/handlers/awsJobs.js @@ -349,11 +349,9 @@ let handlers = {
.split('/')
.slice(2)
.join('/')
- aws.s3.sdk.getObject(objParams, (err, response) => {
- //append to zip
- archive.append(response.Body, { name: fileName })
+ const stream = aws.s3.sdk.getObject(objParams).create... | 7 |
diff --git a/src/components/OptionsList/BaseOptionsList.js b/src/components/OptionsList/BaseOptionsList.js @@ -85,7 +85,7 @@ class BaseOptionsList extends Component {
* We need to implement it so that we can programmatically scroll to items outside the virtual render window of the SectionList.
*
* @param {Array} data -... | 10 |
diff --git a/app/controllers/carto/admin/mobile_apps_controller.rb b/app/controllers/carto/admin/mobile_apps_controller.rb @@ -29,7 +29,7 @@ class Carto::Admin::MobileAppsController < Admin::AdminController
@mobile_apps = response[:mobile_apps].map { |a| Carto::MobileApp.new(a) }
@open_monthly_users = response[:monthly... | 2 |
diff --git a/runtime.js b/runtime.js @@ -301,9 +301,6 @@ const _loadGltf = async (file, {optimize = false, physics = false, physics_url =
let physicsBuffer = null;
let physicsIds = [];
let staticPhysicsIds = [];
- if (physics) {
- physicsMesh = convertMeshToPhysicsMesh(mesh);
- }
if (physics_url) {
if (files && _isReso... | 0 |
diff --git a/src/components/donate/DonateForm.js b/src/components/donate/DonateForm.js @@ -58,25 +58,13 @@ const Option = ({ amount, ...props }) => [
]
class DonateForm extends Component {
- constructor(props) {
- super(props)
-
- this.state = {
+ state = {
loading: true,
stripeLoading: true,
amount: 10,
recurring: tru... | 4 |
diff --git a/Specs/Scene/SceneSpec.js b/Specs/Scene/SceneSpec.js @@ -1379,10 +1379,10 @@ describe(
s.initializeFrame();
s.render();
- expect(spyListener.calls.count()).toBe(2);
+ expect(spyListener.calls.count()).toBe(1);
var args = spyListener.calls.allArgs();
- expect(args.length).toEqual(2);
+ expect(args.length).to... | 13 |
diff --git a/components/ui/map/popup/LayerPopup.js b/components/ui/map/popup/LayerPopup.js @@ -117,6 +117,7 @@ class LayerPopup extends React.Component {
}
// Get interactionConfig
const { interactionConfig } = layer;
+ const { output } = interactionConfig;
// Get data from props or state
const interaction = layersInte... | 11 |
diff --git a/token-metadata/0x1e3a2446C729D34373B87FD2C9CBb39A93198658/metadata.json b/token-metadata/0x1e3a2446C729D34373B87FD2C9CBb39A93198658/metadata.json "symbol": "DSD",
"address": "0x1e3a2446C729D34373B87FD2C9CBb39A93198658",
"decimals": 18,
- "dharmaVerificationStatus": {
"dharmaVerificationStatus": "VERIFIED"
... | 3 |
diff --git a/.circleci/test.sh b/.circleci/test.sh @@ -5,17 +5,36 @@ set +e
set +o pipefail
EXIT_STATE=0
+MAX_AUTO_RETRY=5
+
+# inspired by https://unix.stackexchange.com/a/82602
+retry () {
+ local n=0
+
+ until [ $n -ge $MAX_AUTO_RETRY ]; do
+ "$@" && break
+ n=$[$n+1]
+ echo ''
+ echo run $n of $MAX_AUTO_RETRY faile... | 0 |
diff --git a/.eslintrc.json b/.eslintrc.json "prefer-destructuring": "off",
"no-multi-assign": "off",
"no-param-reassign": "off",
+ "lines-between-class-members": [2, "always", { "exceptAfterSingleLine": true }],
"import/no-extraneous-dependencies": ["error", { "devDependencies": true }],
"no-await-in-loop": "off",
"no... | 11 |
diff --git a/includes/Plugin.php b/includes/Plugin.php @@ -197,7 +197,6 @@ final class Plugin {
( new Core\User_Surveys\REST_User_Surveys_Controller( $authentication ) )->register();
( new Core\Util\Migration_1_3_0( $this->context, $options, $user_options ) )->register();
( new Core\Util\Migration_1_8_1( $this->context... | 2 |
diff --git a/deb/makedeb.sh b/deb/makedeb.sh @@ -20,6 +20,9 @@ if [ -z $VERSION ]; then
FULLVERSION=$(git describe)
UPSTREAM_VERSION=$(echo $FULLVERSION|sed 's/\-.*//')
COMMITS=$(echo $FULLVERSION|sed 's/^[0-9\.]*\-//'|sed 's/\-.*//')
+ if [[ "$UPSTREAM_VERSION" == "$COMMITS" ]]; then
+ COMMITS=0
+ fi
fi
[ -z $UPSTREAM... | 9 |
diff --git a/src/parser/features/special.js b/src/parser/features/special.js export function fixFeatures(features) {
features.forEach((feature) => {
switch (feature.name) {
+ case "Channel Divinity: Radiance of the Dawn":
+ feature.data.damage = { parts: [["2d10 + @classes.cleric.levels", "radiant"]], versatile: "", va... | 7 |
diff --git a/sauce/features/accounts/easy-transaction-approval/index.js b/sauce/features/accounts/easy-transaction-approval/index.js @@ -32,13 +32,13 @@ export class EasyTransactionApproval extends Feature {
}
addBudgetVersionIdObserver() {
- var parent = this;
+ var _this = this;
var applicationController = ynabToolKi... | 14 |
diff --git a/accessibility-checker-extension/gulp/gulpFile.js b/accessibility-checker-extension/gulp/gulpFile.js @@ -97,7 +97,13 @@ export default class HelpFile extends React.Component<IHelpFileProps> {
var snippet = '';
if(children.length > 1){
- children.forEach((element:any) => {snippet = snippet + element.props.ch... | 3 |
diff --git a/CHANGELOG.md b/CHANGELOG.md @@ -10,6 +10,39 @@ https://github.com/plotly/plotly.js/compare/vX.Y.Z...master
where X.Y.Z is the semver of most recent plotly.js release.
+## [1.51.0] -- 2019-10-29
+
+### Added
+- Add `image` trace type [#4289, #4307, #4313, #4319]
+- Add `automargin` attribute in pie traces, ... | 3 |
diff --git a/src/context/useGenerateTest.jsx b/src/context/useGenerateTest.jsx @@ -791,11 +791,11 @@ function useGenerateTest(test, projectFilePath) {
/* ------------------------------------------ ACCESSIBILITY TESTING ------------------------------------------ */
const addAccImportStatements = () => {
- const filePath... | 3 |
diff --git a/src/shared/util.js b/src/shared/util.js @@ -211,7 +211,12 @@ export function looseEqual (a: mixed, b: mixed): boolean {
const isObjectA = isObject(a)
const isObjectB = isObject(b)
if (isObjectA && isObjectB) {
+ try {
return JSON.stringify(a) === JSON.stringify(b)
+ } catch (e) {
+ // possible circular ref... | 9 |
diff --git a/scripts/configureApplication.js b/scripts/configureApplication.js @@ -65,30 +65,6 @@ try {
// Ignore error - file doesn't exist
}
-// Needed before 0.22.0 for Android Studio to sync
-log('Patching react-native-maps');
-const androidManifestReactNativeMaps = fs.readFileSync(
- path.join(
- __dirname,
- '..'... | 2 |
diff --git a/src/models/data.js b/src/models/data.js @@ -76,7 +76,8 @@ var DataModel = Model.extend({
.then(dataId => {
EventSource.unfreezeAll();
return dataId;
- });
+ })
+ .catch((error) => this.handleReaderError(error, query));
}
},
@@ -250,7 +251,6 @@ var DataModel = Model.extend({
},
loadConceptProps() {
- const ... | 9 |
diff --git a/www/views/amount.html b/www/views/amount.html </div>
<div ng-class="{'amount__results--minimize': smallFont, 'amount__results--standard': !smallFont, 'amount__results--placeholder': amountResult}" ng-click="changeAlternativeUnit()">
<div class="amount__result" ng-show="globalResult">{{globalResult}} {{unit... | 14 |
diff --git a/src/components/Bio.js b/src/components/Bio.js @@ -18,7 +18,7 @@ const Base = Flex.extend`
const Bio = ({ bg, img, name, role, text, ...props }) => (
<Base p={3} bg={`${bg}.0`} {...props}>
- <Avatar size="64px" src={img} mr={2} alt=""/>
+ <Avatar size="64px" src={img} mr={2} alt={name} />
<Box>
<Flex align=... | 12 |
diff --git a/assets/js/googlesitekit/data/create-settings-store.test.js b/assets/js/googlesitekit/data/create-settings-store.test.js @@ -126,10 +126,12 @@ describe( 'createSettingsStore store', () => {
/^\/google-site-kit\/v1\/core\/site\/data\/settings/,
{ body: {}, status: 200 }
);
+ const values = { setting1: 'serve... | 12 |
diff --git a/tests/phpunit/integration/Core/Storage/User_OptionsTest.php b/tests/phpunit/integration/Core/Storage/User_OptionsTest.php @@ -120,18 +120,6 @@ class User_OptionsTest extends TestCase {
$this->assertFalse( metadata_exists( 'user', $user_id, 'test-key' ) );
}
- public function test_user_input_state_value() {... | 2 |
diff --git a/src/domain/login/LoginViewModel.js b/src/domain/login/LoginViewModel.js @@ -33,7 +33,7 @@ export class LoginViewModel extends ViewModel {
this._completeSSOLoginViewModel = null;
this._homeserver = defaultHomeServer;
this._errorMessage = "";
- this._start(this._homeserver);
+ this._createViewModels(this._ho... | 10 |
diff --git a/docs/javascript_api.rst b/docs/javascript_api.rst @@ -16,10 +16,7 @@ javascript and css files:
<head>
<meta charset="utf-8">
- <link rel="stylesheet" href="bootstrap.min.css">
- <link rel="stylesheet" href="hglib.css">
-
- <link rel="stylesheet" href="https://unpkg.com/higlass@1.5.2/dist/hglib.css" type="t... | 3 |
diff --git a/shared/js/background/abp-lists.es6.js b/shared/js/background/abp-lists.es6.js * Load the abp-filter-parser node module and
* pre-process the easylists.
*/
-const abp = require('abp-filter-parser')
const constants = require('../../data/constants')
const surrogates = require('./surrogates.es6')
const setting... | 2 |
diff --git a/app/views/audit.scala.html b/app/views/audit.scala.html // Todo. Issue #43 Here, we may want to check if there is a previous task that is cached in user's browser.
streetViewService.getPanoramaByLocation(latLng, STREETVIEW_MAX_DISTANCE, function (streetViewPanoramaData, status) {
if (status === google.maps... | 9 |
diff --git a/templates/master/elasticsearch/kibana/README.md b/templates/master/elasticsearch/kibana/README.md ### Kibana dashboard
Dashboard JSON exported from kibana using
```
-GET "https://<es_endpoint>/_plugin/kibana/api/kibana/dashboards/export?dashboard=052b1350-a37d-11ea-8370-0f1df276cae1" > QnABotDashboard.json... | 12 |
diff --git a/app/views/taxa/_description.html.haml b/app/views/taxa/_description.html.haml =t :no_matching_article_from_x, :x => @describer.describer_name
- else
=raw @description
- - if params[:wiki_prompt] && I18n.locale.to_s =~ /^en/ && ( @description.blank? || @describer == TaxonDescribers::Inaturalist )
+ - if par... | 14 |
diff --git a/BlueComponents.js b/BlueComponents.js @@ -581,16 +581,17 @@ export class BlueListItem extends Component {
bottomDivider
containerStyle={{
backgroundColor: 'transparent',
- borderBottomStartRadius: 20,
- borderBottomEndRadius: 20,
borderBottomColor: '#ededed',
+ paddingTop: 16,
+ paddingBottom: 16,
}}
title... | 7 |
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md @@ -12,6 +12,18 @@ When submitting a feature request please include a well-defined use case and eve
Promote discussion! Let's talk about the change and discuss what the best, most flexible option might be.
+## Developer setup
+
+To develop and test changes to this library,... | 0 |
diff --git a/src/markdown/markdown.ts b/src/markdown/markdown.ts @@ -79,7 +79,7 @@ export const language = <ILanguage>{
[/^\s*~~~\s*((?:\w|[\/\-#])+)?\s*$/, { token: 'string', next: '@codeblock' }],
// github style code blocks (with backticks and language)
- [/^\s*```\s*((?:\w|[\/\-#])+)\s*$/, { token: 'string', next: ... | 11 |
diff --git a/src/pages/workspace/WorkspaceSettingsPage.js b/src/pages/workspace/WorkspaceSettingsPage.js @@ -12,9 +12,7 @@ import styles from '../../styles/styles';
import Button from '../../components/Button';
import Text from '../../components/Text';
import compose from '../../libs/compose';
-import {
- uploadAvatar,... | 7 |
diff --git a/server/migrations.js b/server/migrations.js @@ -1048,7 +1048,11 @@ Migrations.add('change-attachment-library', () => {
const bucket = new MongoInternals.NpmModule.GridFSBucket(MongoInternals.defaultRemoteCollectionDriver().mongo.db, {bucketName: 'cfs_gridfs.attachments'});
const gfsId = new MongoInternals.... | 12 |
diff --git a/CHANGELOG.md b/CHANGELOG.md @@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
-## [5.1.0] - 2021-12-06
... | 3 |
diff --git a/client/components/AvailabilityGrid/AvailabilityGrid.js b/client/components/AvailabilityGrid/AvailabilityGrid.js @@ -128,9 +128,9 @@ class AvailabilityGrid extends Component {
editParticipantToCellGrid(quarter, operation, rowIndex, columnIndex) {
const { curUser } = this.props;
- const { grid } = this.state... | 7 |
diff --git a/docs/Air.md b/docs/Air.md @@ -42,7 +42,8 @@ Low Fare Shop functionality combines air availability and a fare quote request t
| cabins | `Array<Cabin>` | See `Cabins array` description [below](#cabins). |
| requestId | `string` | Trace id of this request. <i>Optional.</i> |
| maxJourneyTime | `number` | Max... | 3 |
diff --git a/lib/command/init.js b/lib/command/init.js @@ -172,7 +172,7 @@ module.exports = function (initPath) {
print(`Directory for temporary output files is already created at '${config.output}'`);
}
}
- success('Almost done! Create your first test by executing `codeceptjs gt` (generate test) command');
+ success('... | 4 |
diff --git a/tools/make/lib/markdown/pkg_urls.mk b/tools/make/lib/markdown/pkg_urls.mk @@ -79,7 +79,7 @@ markdown-pkg-urls: $(NODE_MODULES)
# make markdown-pkg-urls-files FILES='/foo/foo.md /foo/bar.md'
#/
markdown-pkg-urls-files: $(NODE_MODULES)
- $(QUIET) echo "$(MARKDOWN_FILES)" | xargs NODE_PATH="$(NODE_PATH)" "$(R... | 10 |
diff --git a/src/og/control/Lighting.js b/src/og/control/Lighting.js @@ -161,12 +161,12 @@ class Lighting extends Control {
var panel = parseHTML(TEMPLATE);
document.body.appendChild(panel[0]);
+ var _this = this;
+
document.getElementById("layers").addEventListener("change", (e) => {
- console.log(e.target.value);
+ t... | 0 |
diff --git a/src/og/control/MouseNavigation.js b/src/og/control/MouseNavigation.js @@ -209,6 +209,7 @@ class MouseNavigation extends Control {
this.activate();
this.renderer.events.on("keyfree", input.KEY_SHIFT, this.onShiftFree, this);
+ this.renderer.events.on("keyfree", input.KEY_PRINTSCREEN, this.onShiftFree, this)... | 0 |
diff --git a/stories/Select.stories.js b/stories/Select.stories.js @@ -35,7 +35,7 @@ storiesOf('Select', module)
// ====== Stories ======
- .add('Countries - plain', () => (
+ .add('Countries - options', () => (
<Select
options={COUNTRIES}
skin={<SimpleSelectSkin />}
@@ -59,7 +59,7 @@ storiesOf('Select', module)
/>
))
... | 7 |
diff --git a/world.js b/world.js @@ -14,7 +14,7 @@ import {
worldsHost,
tokensHost,
} from './constants.js';
-import {makePromise, getRandomString} from './util.js';
+import {makePromise, getRandomString, getExt} from './util.js';
// world
export const world = new EventTarget();
@@ -449,6 +449,24 @@ world.addEventListe... | 0 |
diff --git a/src/index.js b/src/index.js @@ -156,9 +156,17 @@ class Griddle extends Component {
}
componentWillReceiveProps(nextProps) {
- const { data, pageProperties, sortProperties } = nextProps;
-
- this.store.dispatch(actions.updateState({ data, pageProperties, sortProperties }));
+ const newState = Object.keys(ne... | 3 |
diff --git a/character-controller.js b/character-controller.js @@ -110,6 +110,7 @@ function loadPhsxAuxCharacterCapsule() {
physics: false,
}
);
+ physicsObject.name = 'characeterCapsuleAux';
physicsManager.setGravityEnabled(physicsObject, false);
physicsManager.setLinearLockFlags(physicsObject.physicsId, false, false,... | 0 |
diff --git a/pages/bases-locales/publication.js b/pages/bases-locales/publication.js import React, {useState, useCallback, useEffect} from 'react'
import PropTypes from 'prop-types'
-import Router from 'next/router'
import {ArrowLeft} from 'react-feather'
@@ -38,7 +37,7 @@ const getStep = submission => {
}
}
-const Pub... | 2 |
diff --git a/.gitpod.yml b/.gitpod.yml tasks:
- name: Run Appwrite Docker Stack
init: |
- docker compose pull
+ git pull --recurse-submodules
docker compose build
+ docker compose pull
docker pull composer
command: |
docker run --rm --interactive --tty \
| 7 |
diff --git a/js/plotDenseMatrix.js b/js/plotDenseMatrix.js @@ -158,9 +158,9 @@ function renderFloatLegend(props) {
var addWordBreaks = str => str.replace(/([_/])/g, '\u200B$1\u200B');
function renderFloatLegendNew(props) {
- var {units, colors, vizSettings} = props;
+ var {units, colors, data, vizSettings} = props;
- i... | 9 |
diff --git a/backend/routes/auth.js b/backend/routes/auth.js @@ -45,6 +45,20 @@ async function getGcpSuperAdminPassword() {
return password
}
+/**
+ * Gets the EC2 instance ID
+ */
+async function getEC2InstanceID() {
+ const url = 'http://169.254.169.254/latest/meta-data/instance-id'
+ const res = await fetch(url)
+ i... | 4 |
diff --git a/dev/jaeger-593.js b/dev/jaeger-593.js @@ -41,11 +41,11 @@ const broker1 = new ServiceBroker({
broker1.start()
.then(() => {
console.log("invoker started");
- setTimeout(() => {
- broker1.call("service1.ping")
- .then((res) => {
+ setTimeout(async () => {
+ const span = broker1.tracer.startSpan("Invoke serv... | 3 |
diff --git a/userscript.user.js b/userscript.user.js @@ -3073,6 +3073,9 @@ var $$IMU_EXPORT$$;
do_request({
url: "https://api.github.com/repos/qsniyg/maxurl/tags",
method: "GET",
+ headers: {
+ Referer: ""
+ },
onload: function(resp) {
if (resp.readyState <4 )
return;
@@ -3082,14 +3085,23 @@ var $$IMU_EXPORT$$;
try {
v... | 7 |
diff --git a/src/lib/Room/Room.vue b/src/lib/Room/Room.vue @input="onChangeInput"
@keydown.esc="escapeTextarea"
@keydown.enter.exact.prevent=""
- @paste="pasteImage"
+ @paste="onPasteImage"
/>
<div class="vac-icon-textarea">
@@ -944,7 +944,7 @@ export default {
this.$refs.file.value = ''
this.$refs.file.click()
},
- pa... | 10 |
diff --git a/tools/make/lib/ls/markdown.mk b/tools/make/lib/ls/markdown.mk @@ -20,9 +20,9 @@ FIND_MARKDOWN_FLAGS ?= \
-not -path "$(ROOT_DIR)/.git/*" \
-not -path "$(NODE_MODULES)/*" \
-not -path "$(BUILD_DIR)/*" \
- -not -path "$(DEPS_DIR)/**/$(TMP_FOLDER)/*" \
- -not -path "$(REPORTS_DIR)/*" \
-not -path "$(ROOT_DIR)... | 8 |
diff --git a/components/bases-locales/charte/search.js b/components/bases-locales/charte/search.js @@ -74,11 +74,12 @@ function PartnersSearchbar() {
return (
<div style={{marginTop: '2em'}}>
+ <p className='searchbar-label'>Recherchez une structure de mutualisation sur votre territoire</p>
<SearchInput
value={input}
r... | 0 |
diff --git a/public/app/js/cbus-server-generate-opml.js b/public/app/js/cbus-server-generate-opml.js @@ -42,15 +42,15 @@ if (!cbus.hasOwnProperty("server")) { cbus.server = {} }
function savedCallback(err) {
if (err) {
remote.dialog.showErrorBox("Error saving OPML", "Cumulonimbus could not save the OPML file to the spe... | 12 |
diff --git a/articles/libraries/auth0js/v8/index.md b/articles/libraries/auth0js/v8/index.md @@ -155,7 +155,7 @@ webAuth.redirect.loginWithCredentials({
});
```
-The use of `webauth.redirect.loginWithCredentials` is not recommended when using Auth0.js in your apps; it is recommended that you use `webauth.client.login` ... | 0 |
diff --git a/detox/ios/Detox/ReactNativeSupport.m b/detox/ios/Detox/ReactNativeSupport.m @@ -103,8 +103,8 @@ dispatch_queue_t wx_dispatch_queue_create(const char *_Nullable label, dispatch_
return rv;
}
-static int (*__detox_run_orig)(id self, SEL _cmd);
-static int __detox_run(id self, SEL _cmd)
+static int (*__detox_... | 10 |
diff --git a/package.json b/package.json {
"name": "prettier-atom",
"main": "./dist/main.js",
- "version": "0.56.5",
+ "version": "0.56.6",
"description": "Atom plugin for formatting JavaScript using prettier with (optional) prettier-eslint integration",
"keywords": [
"atom",
| 6 |
diff --git a/docs/Guide.Expo.md b/docs/Guide.Expo.md @@ -5,7 +5,7 @@ title: Expo
## Usage with Expo (iOS)
-- Install `detox` and `detox-expo-helpers` (yarn or npm)
+- Install `detox` 9.0.6 or higher, `detox-expo-helpers` and `expo-detox-hook` (yarn or npm)
- Add `detox` configuration to [package.json](https://github.co... | 3 |
diff --git a/articles/compliance/gdpr/features-aiding-compliance/protect-user-data.md b/articles/compliance/gdpr/features-aiding-compliance/protect-user-data.md @@ -66,9 +66,11 @@ For information on how to use them see [Password Strength](/connections/database
## Step-up authentication
-With step-up authentication, app... | 3 |
diff --git a/package.json b/package.json "description": "Javascript API for Sketch",
"homepage": "https://github.com/BohemianCoding/SketchAPI",
"scripts": {
- "build": "mkdir -p ./build && npm run build:test && npm run build:api && cp -r ./core-modules/node_modules ./build",
+ "build": "mkdir -p ./build && npm run buil... | 10 |
diff --git a/src/userscript.ts b/src/userscript.ts @@ -37512,6 +37512,15 @@ var $$IMU_EXPORT$$;
return src.replace(/\/thum\/+thumbnail\/+([0-9]+y\/+[0-9]+m\/+[0-9]+d\/+)thumb/, "/file/$1");
}
+ if (domain === "img.asiatoday.co.kr") {
+ // thanks to f2005 on discord:
+ // https://img.asiatoday.co.kr/file/2022y/07m/12d/2... | 7 |
diff --git a/articles/connections/social/goodreads.md b/articles/connections/social/goodreads.md @@ -35,27 +35,59 @@ Once the application is registered, the `Key` and `Secret` for your new app will
You will need to use [this endpoint of our Management API v2](/api/management/v2#!/Connections/post_connections) to create... | 0 |
diff --git a/test/endtoend/wdio.remote.conf.js b/test/endtoend/wdio.remote.conf.js @@ -12,12 +12,11 @@ function createCapability (capability) {
exports.config = Object.assign(base.config, {
capabilities: [
- { browserName: 'firefox', version: '38.0', platform: 'Linux' },
+ { browserName: 'firefox', version: '40.0', pla... | 4 |
diff --git a/docs/deep/openapi.yml b/docs/deep/openapi.yml @@ -149,7 +149,7 @@ paths:
channels:
type: array
items:
- type: string
+ type: number
created:
type: string
format: date-time
| 3 |
diff --git a/packages/nexrender-core/readme.md b/packages/nexrender-core/readme.md @@ -36,3 +36,15 @@ First one is responsible for setting up the env, checking if all needed patches
automatically adding render-only license file for a free usage of Adobe's product (unless disabled), and a few other minor things.
Second ... | 3 |
diff --git a/Gruntfile.js b/Gruntfile.js @@ -439,7 +439,7 @@ module.exports = function(grunt) {
function processLeanplumConfig(content, env) {
var leanplumConfig = {};
try {
- leanplumConfig = grunt.file.readJSON('../leanplum-config.json');
+ leanplumConfig = grunt.file.readJSON('../wallet-configs/app-v1/leanplum-confi... | 12 |
diff --git a/api/src/workers/load_featured_feeds.js b/api/src/workers/load_featured_feeds.js @@ -152,7 +152,8 @@ function main() {
var promise = RSS.findOneAndUpdate(
{ feedUrl: feed.url },
{
- categories: featuredRSS.category,
+ interest: featuredRSS.category,
+ categories: 'RSS',
description: entities.decodeHTML(feed... | 4 |
diff --git a/assets/js/googlesitekit/widgets/components/WidgetAreaRenderer.js b/assets/js/googlesitekit/widgets/components/WidgetAreaRenderer.js @@ -96,25 +96,25 @@ export default function WidgetAreaRenderer( { slug, totalAreas, contextID } ) {
select( CORE_WIDGETS ).isWidgetAreaActive( slug )
);
- const viewContext = ... | 10 |
diff --git a/src/web/stylesheets/vendors/bootstrap.less b/src/web/stylesheets/vendors/bootstrap.less @import "~bootstrap/less/scaffolding.less";
@import "~bootstrap/less/type.less";
@import "~bootstrap/less/code.less";
-// @import "~bootstrap/less/grid.less";
+@import "~bootstrap/less/grid.less";
@import "~bootstrap/le... | 0 |
diff --git a/userscript.user.js b/userscript.user.js @@ -86583,11 +86583,16 @@ var $$IMU_EXPORT$$;
}
if (domain === "d3rm30gbu5aixc.cloudfront.net") {
+ // https://www.drb.no/aktuelt/manover-fagdag-og-fest-takk-for-denne-gang/
// thanks to fedesk on discord
// https://d3rm30gbu5aixc.cloudfront.net/media/rc/536x358/1480... | 7 |
diff --git a/packages/bitcore-lib-doge/lib/script/interpreter.js b/packages/bitcore-lib-doge/lib/script/interpreter.js @@ -619,6 +619,7 @@ Interpreter.prototype.checkSequence = function(nSequence) {
// constrained. Testing that the transaction's sequence number do not have
// this bit set prevents using this property t... | 3 |
diff --git a/userscript.user.js b/userscript.user.js @@ -29377,13 +29377,18 @@ var $$IMU_EXPORT$$;
// https://ae01.alicdn.com/kf/HT1N7knFG0dXXagOFbXQ/220255879/HT1N7knFG0dXXagOFbXQ.jpg
// https://cbu01.alicdn.com/img/ibank/2016/379/147/3522741973_1026601309.310x310.jpg
// https://cbu01.alicdn.com/img/ibank/2016/379/147... | 7 |
diff --git a/token-metadata/0xADE00C28244d5CE17D72E40330B1c318cD12B7c3/metadata.json b/token-metadata/0xADE00C28244d5CE17D72E40330B1c318cD12B7c3/metadata.json "symbol": "ADX",
"address": "0xADE00C28244d5CE17D72E40330B1c318cD12B7c3",
"decimals": 18,
- "dharmaVerificationStatus": {
"dharmaVerificationStatus": "VERIFIED"
... | 3 |
diff --git a/src/runtime/pay-client-test.js b/src/runtime/pay-client-test.js @@ -59,6 +59,8 @@ const INTEGR_DATA_OBJ_DECODED = {
},
};
+const GOOGLE_TRANSACTION_ID = 'ABC12345-CDE0-XYZ1-ABAB-11609E6472E9';
+
describes.realWin('PayClientBindingSwg', {}, env => {
let deps;
let eventManager;
@@ -103,7 +105,7 @@ describes.... | 12 |
diff --git a/.circleci/config.yml b/.circleci/config.yml @@ -189,7 +189,7 @@ jobs:
testE2e:
docker:
# Primary container image where all steps run.
- - image: *docker-node
+ - image: *docker-browsers
# Secondary container image on common network.
- image: lunieio/testnet:v0.34.3
steps:
| 4 |
diff --git a/src/components/dashboard/Dashboard.js b/src/components/dashboard/Dashboard.js @@ -72,6 +72,7 @@ import { routeAndPathForCode } from './utils/routeAndPathForCode'
import FaceVerification from './FaceVerification/screens/VerificationScreen'
import FaceVerificationIntro from './FaceVerification/screens/IntroS... | 0 |
diff --git a/utils/order-utils/test/orders.js b/utils/order-utils/test/orders.js var expect = require('chai').expect
const assert = require('assert')
-const { orders } = require('@airswap/order-utils')
+const { orders, signatures } = require('@airswap/order-utils')
+const { GANACHE_PROVIDER } = require('@airswap/order-... | 3 |
diff --git a/magda-search-api/src/main/scala/au/csiro/data61/magda/search/elasticsearch/FacetDefinition.scala b/magda-search-api/src/main/scala/au/csiro/data61/magda/search/elasticsearch/FacetDefinition.scala @@ -125,8 +125,9 @@ class PublisherFacetDefinition(implicit val config: Config) extends FacetDefinit
termsAggre... | 12 |
diff --git a/src/screens/ParadeMapScreen/Map.js b/src/screens/ParadeMapScreen/Map.js @@ -177,6 +177,7 @@ class Map extends PureComponent<Props, State> {
renderStageMarker = (stage: Event) => (
<Marker
+ zIndex={1}
coordinate={{
longitude: stage.fields.location.lon,
latitude: stage.fields.location.lat
| 0 |
diff --git a/webaverse.js b/webaverse.js @@ -132,7 +132,7 @@ E6-wrap_74_10_19_21 - Part_1.wav
E6-wrap_74_10_19_29 - Part_1.wav`
.split('\n')
.map(voiceFile => `/@proxy/https://webaverse.github.io/shishi-voicepack/vocalizations/${voiceFile}`); */
- const numFiles = 362;
+ const numFiles = 361;
const voiceFiles = Array(n... | 2 |
diff --git a/src/component/component/index.js b/src/component/component/index.js @@ -426,10 +426,6 @@ export class Component<P> extends BaseComponent<P> {
if (!element && context === CONTEXT_TYPES.IFRAME) {
throw new Error(`[${this.tag}] Context type ${CONTEXT_TYPES.IFRAME} requires an element selector`);
}
-
- if (ele... | 8 |
diff --git a/source/registry/contracts/Registry.sol b/source/registry/contracts/Registry.sol @@ -42,7 +42,7 @@ contract Registry {
tokenCost = _tokenCost;
}
- /// @notice Adds list of tokens supported by a server account
+ /// @notice Adds a list of tokens supported by a server account
/// @param tokenList an array of ... | 3 |
diff --git a/packages/components/ng-ovh-payment-method/src/payment-method.service.js b/packages/components/ng-ovh-payment-method/src/payment-method.service.js @@ -12,6 +12,7 @@ export default class OvhPaymentMethodService {
constructor($q, $translate, $window, OvhApiMe, target) {
this.$q = $q;
this.$translate = $transl... | 1 |
diff --git a/src/components/TimeSeriesCard/TimeSeriesCard.story.jsx b/src/components/TimeSeriesCard/TimeSeriesCard.story.jsx @@ -661,7 +661,7 @@ storiesOf('TimeSeriesCard (Experimental)', module)
</div>
);
})
- .add('large / UNITS', () => {
+ .add('large / units', () => {
const size = select('size', Object.keys(CARD_SI... | 1 |
diff --git a/src/config.js b/src/config.js const dev = process.env.NODE_ENV === `development`
const stargate =
process.env.STARGATE ||
- (dev ? `https://lcd.nylira.net` : `https://stargate.lunie.io`)
+ (dev ? `https://localhost:9071` : `https://stargate.lunie.io`)
const rpc =
- process.env.RPC || (dev ? `https://rpc.lu... | 13 |
diff --git a/core/task-executor/config/main/config.base.js b/core/task-executor/config/main/config.base.js @@ -32,7 +32,7 @@ config.metrics = {
}
};
-config.defaultStorage = process.env.DEFAULT_STORAGE || 'fs';
+config.defaultStorage = process.env.DEFAULT_STORAGE || 's3';
config.tracer = {
tracerConfig: {
| 12 |
diff --git a/app/views/gallery/index.html.haml b/app/views/gallery/index.html.haml .row
.col-md-12
.embed-responsive.embed-responsive-16by9
- %object{ width: "100%", height: "100%" }
- %param{ name: "flashvars", value: "offsite=true&lang=en-us&page_show_url=%2Fgroups%2Fhackweek%2Fpool%2Fshow%2F&page_show_back_url=%2Fgr... | 4 |
diff --git a/package.json b/package.json "dependencies": {
"@lunie/cosmos-js": "0.0.21",
"@lunie/cosmos-keys": "0.0.9",
- "@lunie/cosmos-ledger": "0.0.3",
+ "@lunie/cosmos-ledger": "0.0.5",
"@sentry/browser": "5.0.3",
"autosize": "4.0.2",
"axios": "0.19.0",
"camelcase": "5.3.0",
"crypto-js": "3.1.9-1",
"js-beautify": "... | 3 |
diff --git a/src/display/api.js b/src/display/api.js @@ -1064,7 +1064,7 @@ var PDFWorker = (function PDFWorkerClosure() {
if (typeof PDFJSDev !== 'undefined' &&
PDFJSDev.test('PRODUCTION && !(MOZCENTRAL || FIREFOX)') &&
pdfjsFilePath) {
- return pdfjsFilePath.replace(/(\.(?:min\.)?js)$/i, '.worker$1');
+ return pdfjsFi... | 11 |
diff --git a/includes/Core/Authentication/Profile.php b/includes/Core/Authentication/Profile.php namespace Google\Site_Kit\Core\Authentication;
use Google\Site_Kit\Core\Storage\User_Options;
-use Google\Site_Kit\Core\Authentication\Clients\OAuth_Client;
-use Google\Site_Kit_Dependencies\Google_Service_PeopleService;
/*... | 2 |
diff --git a/demo/vue-viewer/src/components/DocumentPreview/Page.vue b/demo/vue-viewer/src/components/DocumentPreview/Page.vue @@ -126,14 +126,16 @@ export default {
},
methods: {
elementSelected(element) {
+ // if a Word is clicked, I make sure to remove all remaining highlighted elements instead of just the last clic... | 2 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.